26 lines
687 B
Plaintext
26 lines
687 B
Plaintext
<article class="content-page">
|
|
<header class="content-header">
|
|
<p class="eyebrow">Article</p>
|
|
<h1>{{ page.title }}</h1>
|
|
{% if page.summary %}
|
|
<p class="lede">{{ page.summary }}</p>
|
|
{% endif %}
|
|
{% if page.published %}
|
|
<p class="content-meta">Published {{ page.published }}</p>
|
|
{% endif %}
|
|
</header>
|
|
<div class="prose">
|
|
{{ page.renderedContent | safe_content }}
|
|
</div>
|
|
{% if page.tags.size > 0 %}
|
|
<footer class="content-tags">
|
|
<p class="visually-hidden">Topics</p>
|
|
<ul class="tag-list">
|
|
{% for tag in page.tags %}
|
|
<li>{{ tag }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</footer>
|
|
{% endif %}
|
|
</article>
|