12 lines
244 B
HTML
12 lines
244 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 class="title">
|
|
{{ section.title }}
|
|
</h1>
|
|
|
|
<p>{{ section.content | safe }}</p>
|
|
|
|
<p><a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>.</p>
|
|
{% endblock content %}
|