2020-03-09 23:47:06 +01:00
|
|
|
{% extends 'layouts/base.njk' %}
|
|
|
|
{% set pageType = 'Definition' %}
|
|
|
|
{% set titleWithPath = title + ' « Definitions « ' %}
|
|
|
|
{% set description = 'The definition of ' + title + ' in Self-Defined, a modern dictionary about us.'%}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="wide-content">
|
|
|
|
{% include 'components/sub-page-header.njk' %}
|
|
|
|
<main>
|
|
|
|
<article class="definition">
|
|
|
|
<header class="definition__header">
|
|
|
|
{% definitionFlag flag %}
|
|
|
|
<h1 class="main-headline" >{{ title }}</h1>
|
2020-05-29 00:08:35 +01:00
|
|
|
<section class="u-margin-bottom-double" aria-labelledby="definition-speech">
|
|
|
|
<h2 id="definition-speech" class="visually-hidden">Speech</h2>
|
|
|
|
<p class="definition-content__speech">{{ speech }}</p>
|
|
|
|
</section>
|
2020-03-09 23:47:06 +01:00
|
|
|
</header>
|
2020-05-29 00:08:35 +01:00
|
|
|
{% include 'components/content-warning-flag.njk' %}
|
2020-03-09 23:47:06 +01:00
|
|
|
{% include 'components/definition-content.njk' %}
|
2020-06-22 16:01:43 -04:00
|
|
|
{% include 'components/alertbox.njk' %}
|
2020-03-09 23:47:06 +01:00
|
|
|
{% renderDefinitionContentNextEntries title, slug, collections.definedWords %}
|
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|