ironsmith/web/index.html

56 lines
1.1 KiB
HTML
Raw Normal View History

2016-04-06 11:31:22 -05:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ironsmith - A simple, script driven continuous integration tool">
<title>Ironsmith - A simple, script driven continuous integration tool</title>
<link rel="stylesheet" href="/css/pure-min.css">
<style>
</style>
</head>
<body>
<script id="tMain" type="text/ractive">
2016-04-13 16:59:28 -05:00
{{#if view == "projects"}}
{{>projects}}
{{elseif view == "project"}}
{{elseif view == "version"}}
{{elseif view == "stage"}}
{{/if}}
{{#partial projects}}
<table class="pure-table pure-table-striped">
<thead>
<tr>
<th>Project</th>
<th>Status</th>
<th>Stage</th>
<th>Last Release</th>
<th>Last Version</th>
</tr>
</thead>
<tbody>
{{#projects:i}}
<tr>
<td>{{.name}}</td>
<td>{{.status}}</td>
<td>{{.stage}}</td>
<td>{{.releaseVersion}}</td>
<td>{{.lastVersion}}</td>
</tr>
{{/projects}}
</tbody>
</table>
{{/partial}}
2016-04-06 11:31:22 -05:00
</script>
<script src="/js/ractive.min.js"></script>
<script src="/js/index.js"></script>
</body>
</html>