layout: default


<section id=“main” aria-role=“main”>

<h1 id="title">{{ page.title }}</h1>
<article id="content">
    {{ content }}
</article>

</section>

<div id=“grid”>

<ul id="list-grid">
    {% assign col = site.collections | where: "label", page.collection %}
    {% for all in col %}
    {% for a in all.docs %}
    {% if a.title != page.title %}
    <li id="content">
        <a href="{{ a.url | relative_url }}">
            <h2>{{ a.title }}</h2>
        </a>
        <p>{% if a.excerpt %}{{ a.excerpt }}{% else %}{{ a.content | strip_html | truncatewords: 50, "..." | markdownify }}{% endif %}</p>
        {% if a.date %}
        <p id="date">Last updated: {{ a.date | date: "%a, %b %d, %Y" }}</p>{% endif %}
    </li>
    {% endif %}
    {% endfor %%}
    {% endfor %%}
</ul>

</div>