Chromium Code Reviews| Index: experimental/webtry/templates/workspace.html |
| diff --git a/experimental/webtry/templates/workspace.html b/experimental/webtry/templates/workspace.html |
| index cb7a82740bbce52b3a4236184fc75b51b1605753..2cbb7a035ae91fd1fc32911a8c1f865ba3016894 100644 |
| --- a/experimental/webtry/templates/workspace.html |
| +++ b/experimental/webtry/templates/workspace.html |
| @@ -6,35 +6,37 @@ |
| <link rel='import' type='text/html' href='/res/imp/zoom.html'> |
| </head> |
| <body> |
| - <template id=tryTemplate> |
| + <template id="tryTemplate"> |
| <div class=tries data-try=''> |
| - <img width=64 height=64 src=''> |
| + <img width="64" src=''> |
| </div> |
| </template> |
| - {{template "titlebar.html" .}} |
| -{{if .Name}} |
| - {{template "content.html" .}} |
| - |
| - <section id=tryHistory> |
| - </section> |
| + <div id="wrapper"> |
| + {{template "titlebar.html" .}} |
| + {{if .Name}} |
| + <div id="lower-wrapper"> |
| + {{template "sidebar.html" .}} |
| + {{template "content.html" .}} |
| + </div> |
| + <section id="tryHistory"> |
| + </section> |
| - <script type='text/javascript'> |
| - var history_ = {{.Tries}}; |
| - console.log(history_); |
| - </script> |
| - <script type='text/javascript'> |
| - // Set the workspace name so run.js also updates the history. |
| - var workspaceName = '{{.Name}}'; |
| - </script> |
| -{{else}} |
| - <section id=content> |
| - <h1>Create</h1> |
| - Create a new workspace: |
| - <form action='.' method='POST'> |
| - <p><input type='submit' value='Create'></p> |
| - </form> |
| - </section> |
| -{{end}} |
| - {{template "footercommon.html" .}} |
| + <script type='text/javascript'> |
| + var history_ = {{.Tries}}; |
| + </script> |
| + <script type='text/javascript'> |
| + // Set the workspace name so run.js also updates the history. |
| + var workspaceName = '{{.Name}}'; |
| + </script> |
| + {{else}} |
| + <section id="content"> |
| + <h1>Create</h1> |
| + <form action='.' method='POST'> |
|
tfarina
2014/10/13 15:50:50
can we use " " instead of ' ' throughout?
humper
2014/10/13 16:44:06
Will do -- I've been cleaning up some HTML stuff a
|
| + <input class='btn btn-primary btn-lg' type='submit' value='Create a new workspace'> |
| + </form> |
| + </section> |
| + {{end}} |
| + {{template "footercommon.html" .}} |
| + </div> |
| </body> |
| </html> |