aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/list.html
blob: e7e1f4c2590d99a7a9709d602b00b845af46e2e5 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block content %}
<h1>{{ title }}</h1>
<ul class='generic-list'>
	{% for item in items %}
	<li>{{ item|safe }}</li>
	{% endfor %}
</ul>
{% endblock %}
{# ft:jinja #}