{% extends "base.html" %} {% block title %}{{ collection.name | title }} | {{ site.config.title }}{% endblock %} {% block content %}

{{ collection.name | title }}

{% if collection.items | length > 0 %}
{% for item in collection.items %}

{{ item.title }}

{% endfor %}
{% else %}

No items in this collection.

{% endif %} {% endblock %}