summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..1e0364f
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,11 @@
+{% extends "layout.html" %}
+{% block title %}Index{% endblock %}
+{% block content %}
+<ol class="breadcrumb">
+ <li class="active">Index</li>
+</ol>
+<ul class="nav nav-pills nav-stacked">
+ <li role="presentation"><a href="{{ url_for('feedback') }}">Feedback list</a></li>
+ <li role="presentation"><a href="{{ url_for('stats') }}">Statistics</a></li>
+</ul>
+{% endblock %}