mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
12 lines
326 B
HTML
12 lines
326 B
HTML
{% extends "base.html" %} {% block title %}{{ page.title }} - {{ super() }}{%
|
|
endblock %} {% block content %}
|
|
<header>
|
|
<figure>
|
|
<h1>{{ page.title }}</h1>
|
|
{% if page.subtitle %}
|
|
<figcaption>{{ page.subtitle}}</figcaption>
|
|
{% endif %}
|
|
</figure>
|
|
</header>
|
|
<article>{{ page.content }}</article>
|
|
{% endblock %}
|