2018-08-09 06:53:47 +00:00
|
|
|
{% extends "layout.html" %}
|
2018-09-22 21:14:11 +00:00
|
|
|
{% import "macros/layout.html" as layout %}
|
2018-09-22 08:17:41 +00:00
|
|
|
{% import "macros/post.html" as post %}
|
2018-08-09 06:53:47 +00:00
|
|
|
|
2018-08-29 22:36:07 +00:00
|
|
|
{% block title %}
|
|
|
|
{% if page.title %}{{ page.title }} - {% endif %}
|
|
|
|
{{ config.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-08-09 06:53:47 +00:00
|
|
|
{% block content %}
|
2019-03-05 00:04:13 +00:00
|
|
|
<a href="../">« back</a>
|
|
|
|
<h1 style="margin: 0;">{{ page.title }}</h1>
|
2018-08-09 06:53:47 +00:00
|
|
|
{% if page.date or page.author %}
|
|
|
|
<small style="display: block; margin-bottom: 20px;">
|
|
|
|
Posted
|
|
|
|
{% if page.extra.author %}by {{ page.extra.author }}{% endif %}
|
|
|
|
on {{ page.date }}
|
|
|
|
</small>
|
|
|
|
{% endif %}
|
2018-09-22 08:17:41 +00:00
|
|
|
|
2019-06-29 18:04:30 +00:00
|
|
|
{% if page.extra.toc and toc | length %}
|
2018-09-22 08:17:41 +00:00
|
|
|
<div class="toc">
|
2018-10-19 16:10:28 +00:00
|
|
|
table of contents
|
2019-06-29 18:04:30 +00:00
|
|
|
{{ post::render_toc(toc=toc) }}
|
2018-09-22 08:17:41 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2019-05-06 03:24:50 +00:00
|
|
|
<div id="content">{{ page.content | safe }}</div>
|
2018-08-09 06:53:47 +00:00
|
|
|
{% endblock %}
|