aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyenc/templates/list.html')
-rw-r--r--pyenc/templates/list.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/pyenc/templates/list.html b/pyenc/templates/list.html
new file mode 100644
index 0000000..dd267c5
--- /dev/null
+++ b/pyenc/templates/list.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block content %}
+<h1>{{ title }}</h1>
+<ul>
+ {% for item in items %}
+ <li>{{ item|safe }}</li>
+ {% endfor %}
+</ul>
+{% endblock %}
+{# ft:jinja #}