mirror of
https://github.com/redoules/redoules.github.io.git
synced 2025-12-13 16:19:34 +00:00
24 lines
435 B
HTML
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 %}
|