mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
10 lines
186 B
HTML
10 lines
186 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title%}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ title }}</h1>
|
|
<div class="markdown">
|
|
{{ content }}
|
|
</div>
|
|
{% endblock %}
|