blob: f9603987cb19d2da95922bdb17a1fffe109a815e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block title -%}
{{ page.title }} | {{ config.title }}
{%- endblock title %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<p><a href="{{ get_url(path='@/posts/_index.md') }}"><-- Back</a></p>
{{ page.content | safe }}
{% endblock content %}
|