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
2022-12-16 21:27:55 -07:00

11 lines
186 B
HTML

{% extends "base.html" %}
{% block title%}{{ title }}{% endblock %}
{% block content %}
<h1>{{ title }}</h1>
<div class="markdown">
{{ content }}
</div>
{% endblock %}