This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/flatpage.html

11 lines
186 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title%}{{ title }}{% endblock %}
{% block content %}
<h1>{{ title }}</h1>
2022-12-17 05:27:55 +01:00
<div class="markdown">
{{ content }}
2022-12-17 05:27:55 +01:00
</div>
{% endblock %}