layout: default


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

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

</section> <section id=“paging”>

<div>
    {% if page.previous %}
    <a class="previous" href="{{ page.previous.url | relative_url }}">⟵ Previous: {{page.previous.title}}</a>
    {% endif %}
</div>
<div>
    {% if page.next %}
    <a class="next" href="{{ page.next.url | relative_url }}">Next: {{page.next.title}} ⟶</a>
    {% endif %}
</div>

</section>

<section id=“section-list”>

{% if page.next or page.previous %}<p>Jump to...</p>{% endif %}
{% assign col = site.collections | where: "label", page.collection %}
{% for all in col %}
{% for a in all.docs %}
{% if a.title != page.title %}
<p><a class="next" href="{{ a.url | relative_url }}">{{ a.title }}</a></p>
{% endif %}
{% endfor %%}
{% endfor %%}

</section>

<section id=“meta”>

{% if page.date %}
<p id="date">Last updated: {{ page.date | date: "%a, %b %d, %Y" }}</p>{% endif %}

</section>