20 lines
454 B
Plaintext
Raw Normal View History

2019-11-17 22:25:36 +01:00
{% extends 'layouts/base.njk' %}
{% block content %}
<main>
{{ content | safe }}
{% include 'components/table-of-content.njk' %}
<section>
<h2>Words</h2>
{% include 'components/defintions-list.njk' %}
</section>
</main>
<footer class="site-footer">
<nav aria-label="">
<ul class="navigation-list">
2020-02-09 11:22:29 -08:00
<li><a href="/documentation/">Documentation</a></li>
2019-11-17 22:25:36 +01:00
</ul>
</nav>
</footer>
{% endblock %}