initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
16 lines
348 B
HTML
16 lines
348 B
HTML
{% extends "base.html" %}
|
|
{% block style %}
|
|
<link rel="stylesheet" href="/post/page.css"/>
|
|
{% endblock style %}
|
|
{% block title %}
|
|
{{ page.title }}
|
|
{% endblock title %}
|
|
{% block content %}
|
|
<h1 id="title">
|
|
{{ page.title }}
|
|
</h1>
|
|
<p id="subtitle">{{ page.date }}</p>
|
|
<div id="page_content">
|
|
{{ page.content | safe }}
|
|
</div>
|
|
{% endblock content %}
|