Import initial.

This commit is contained in:
David Soulayrol
2022-04-04 18:30:08 +02:00
commit 57deaaaf34
46 changed files with 16985 additions and 0 deletions

13
layouts/article.njk Normal file
View File

@@ -0,0 +1,13 @@
{% extends "base.njk" %}
{% block article %}
<h1>{{ title }}</h1>
{% if date %}
<div class="meta-published">
Publié le : {{ moment(date).format('LL') }}
</div>
{% endif %}
{{ contents | safe }}
{% endblock %}