6c07907eaa
BUG=skia: R=jcgregorio@google.com Review URL: https://codereview.chromium.org/656463002
43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Workspace</title>
|
|
{{template "headercommon.html" .}}
|
|
<link rel='import' type='text/html' href='/res/imp/zoom.html'>
|
|
</head>
|
|
<body>
|
|
<template id="tryTemplate">
|
|
<div class=tries data-try=''>
|
|
<img width="64" src=''>
|
|
</div>
|
|
</template>
|
|
<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}};
|
|
</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">
|
|
<input class='btn btn-primary btn-lg' type='submit' value='Create a new workspace'>
|
|
</form>
|
|
</section>
|
|
{{end}}
|
|
{{template "footercommon.html" .}}
|
|
</div>
|
|
</body>
|
|
</html>
|