Initial Commit

This commit is contained in:
2023-11-02 09:04:40 +01:00
commit 02d95f34e2
18 changed files with 274 additions and 0 deletions

14
templates/page.html Normal file
View File

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block header %}
<header id="title-block-header">
<h1 class="title">Fabrice Mouhartem's Webpage</h1>
<p class="date">{{ page.date }}</p>
</header>
{% endblock %}
{% block main %}
<h1>{{ section.extra.hero.title | markdown(inline = true) | safe }}</h1>
<p>{{ section.extra.hero.description | markdown(inline = true) | safe }}</p>
<h1>{{ section.extra.news.title | safe }}</h1>
{% endblock %}