layout: default


<h1>Introduction</h1>

{{ content }}

<h1>Module content</h1>

{% for collection in site.collections %}

{% if collection.label != "posts" %}
    {% assign name = collection.label %}
    <section>
        <h2>{{ name | capitalize }}</h2>
        {% include category_list.html category=name %}
    </section>
{% endif %}

{% endfor %}