blob: 32b160712021d14079336570ee820d66e50c8369 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "base.html" %}
{% block title %}{{ page.title | lower }} · {{ config.title }}{% endblock title %}
{% block description %}{{ page.description | default(value=config.description) }}{% endblock description %}
{% block content %}
<p class="back"><a href="{{ section.permalink | default(value=get_url(path="/")) | safe }}">← back</a></p>
<article class="prose">
<h1 class="page-label">{{ page.title }}</h1>
{% if page.description %}<p class="lede">{{ page.description }}</p>{% endif %}
{{ page.content | safe }}
{% if page.extra.link %}
<p><a class="btn btn-primary" href="{{ page.extra.link }}">{{ page.extra.link_label | default(value="source") | lower }} →</a></p>
{% endif %}
</article>
{% endblock content %}
|