aboutsummaryrefslogtreecommitdiff
path: root/cherry_lesana/data/templates/list.html
blob: 2fbe14c2c968cdf50c2c4aaeeda0857b5350c472 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% block title %}CherryLesana{% endblock %}
{% block content %}
<h1>{{ collection.settings.name }}</h1>
<ul>
  {% for item in items %}
  <li>{{ item }}</li>
  {% endfor %}
</ul>
{% endblock %}