summaryrefslogtreecommitdiffstats
path: root/etc/project.html
diff options
context:
space:
mode:
Diffstat (limited to 'etc/project.html')
-rw-r--r--etc/project.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/etc/project.html b/etc/project.html
new file mode 100644
index 0000000..74242e7
--- /dev/null
+++ b/etc/project.html
@@ -0,0 +1,36 @@
+<html>
+ <head>
+ <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
+ </head>
+ <body>
+ <center>
+ <h1>
+ {{#if .}}
+ {{#with . as |t|}}
+ {{t.[0].name}}
+ {{/with}}
+ {{/if}}
+ </h1>
+ <hr />
+ <table class="pure-table pure-table-horizontal pure-table-striped">
+ <thead>
+ <tr>
+ <th>Repo</th>
+ <th>Version</th>
+ <th>Status</th>
+ </tr>
+ </thead>
+
+ <tbody>
+ {{~#each . as |t|}}
+ <tr>
+ <td>{{t.repo}}</td>
+ <td>{{t.version}}</td>
+ <td>{{t.status}}</td>
+ </tr>
+ {{~/each}}
+ </tbody>
+ </table>
+ </center>
+ </body>
+</html>