27 lines
626 B
Text
27 lines
626 B
Text
---
|
|
layout: layouts/base.njk
|
|
---
|
|
|
|
{% if page.date %}
|
|
<strong><time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time></strong>
|
|
{% endif %}
|
|
|
|
{% for quote in quotes %}
|
|
<blockquote class="max-w-2xl mx-auto">
|
|
« {{ quote | toHTML | safe }} »
|
|
</blockquote>
|
|
{% endfor %}
|
|
|
|
<p>{{ content | safe }}</p>
|
|
|
|
{% if articleImage %}
|
|
<img alt="{{ title }}" class="mx-auto mt-8 px-16" src="{{ articleImage }}" />
|
|
{% endif %}
|
|
|
|
{% if iframe %}
|
|
{{ iframe | safe }}
|
|
{% endif %}
|
|
|
|
{% if link %}
|
|
<a href="{{ link }}" class="centered-button" target="_blank">L'article</a>
|
|
{% endif %}
|