mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-10 17:31:03 +00:00
10 lines
205 B
HTML
10 lines
205 B
HTML
{% extends "base_plain.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
<section class="markdown">
|
|
{{ content }}
|
|
</section>
|
|
{% endblock %}
|