redoules.github.io/theme/templates/page.html
Guillaume Redoulès 1924ca4047 update to the site
cleaning Chris' project to adapt to my site
2017-10-14 21:35:49 +02:00

24 lines
435 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block head %}
{{ super() }}
{% if page.description %}
<meta name="description" content="{{page.description}}" />
{% endif %}
{% endblock %}
{% block content %}
<section id="content" class="body">
<header>
<h1>
{{ page.title }}
</h1>
</header>
<div class='article_content'>
{{ page.content }}
</div>
</section>
{% endblock %}