17 lines
336 B
HTML
17 lines
336 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block header %}
|
|
<header id="title-block-header">
|
|
<div id="header-logo"></div>
|
|
<h1 class="title">Fabrice Mouhartem</h1>
|
|
<p class="date">{{ page.date }}</p>
|
|
</header>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<article>
|
|
<h1>{{ page.title | safe }}</h1>
|
|
<p>{{ page.content | safe }}</p>
|
|
</article>
|
|
{% endblock %}
|