aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/templates/index.html')
-rw-r--r--web/templates/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/web/templates/index.html b/web/templates/index.html
new file mode 100644
index 0000000..e2985e8
--- /dev/null
+++ b/web/templates/index.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{% block intro %}
+Collagen is here!
+{% endblock %}
+
+{% block main %}
+
+You can use this web interface in several different ways:
+<ul>
+ <li><a href="/collagen/browse">Browse packages</a></li>
+ <li><a href="/collagen/browse?failed">Browse only failed packages</a></li>
+ <li>Search packages containing certain path
+ <form method="get" action="/collagen/search/by-path">
+ <input type="text" name="path" value="" /> &nbsp;
+ <button type="submit">Submit</button>
+ </form></li>
+</ul>
+{% endblock %}