list.tera.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "_base.tera.html" %}
{% block title %}{{ list.name }}{% endblock %}
{% block content %}
<article>
<h1>{{ list.name }}</h1>
<ul>
{% for item in list.items %}
<li><a href="{{ item.link }}">{{ item.name }}</a></li>
{% endfor %}
</ul>
</article>
{% endblock %}