1
0

Article body styles

This commit is contained in:
2021-12-03 21:55:43 +01:00
parent 23a204c2cc
commit 775a43dad2
4 changed files with 49 additions and 8 deletions

11
templates/page.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "index.html" %}
{% block title %}
{{ page.title }} — {{ config.title }}
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{{ macros::page_info(page=page) }}
{% endblock content %}