{% 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 %}