summaryrefslogtreecommitdiff
path: root/views/projects.tpl
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-08-03 15:11:03 +0300
committerLars Wirzenius <liw@liw.fi>2018-08-03 15:11:03 +0300
commita46a46858072db5f5ca5a5ae3df203de545c26d0 (patch)
treee3f8ef800821903dcdf8d58418e7cfa0c363134e /views/projects.tpl
parent3038292daee114f22417495bfac4dcd105ee955a (diff)
downloadickweb-a46a46858072db5f5ca5a5ae3df203de545c26d0.tar.gz
Add: basic functionality
This does NOT work yet, lacks authentication, but that requires having a Qvisqve that supports that.
Diffstat (limited to 'views/projects.tpl')
-rw-r--r--views/projects.tpl19
1 files changed, 19 insertions, 0 deletions
diff --git a/views/projects.tpl b/views/projects.tpl
new file mode 100644
index 0000000..66feecf
--- /dev/null
+++ b/views/projects.tpl
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="description" content="ickweb">
+ <meta name="author" content="The ick project">
+ <title>Ick projects</title>
+ </head>
+ <body>
+ <p>Projects:</p>
+ <ol>
+ % for p in projects:
+ <li>
+ <a href="/projects/{{p['project']}}">{{ p['project'] }}</a>
+ </li>
+ % end
+ </ol>
+ </body>
+</html>