15 lines
424 B
HTML
15 lines
424 B
HTML
{% 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 %}
|