blob: 794c7155b0878d697a947024fa8d9bba22256ae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %} {% block content %}
<div class="window">
<div class="title-bar">
<b>📰 Post: {{ page.title }}</b>
<div class="title-bar-controls">
<button
aria-label="Help"
data-tooltip="Posted {{ page.date }}
{{ page.word_count }} words ({{ page.reading_time }} minutes)"
></button>
<a href="../"><button aria-label="Close"></button></a>
</div>
</div>
<div class="window-body">
<h1>{{ page.title }}</h1>
<article>{{ page.content | safe}}</article>
</div>
</div>
{% endblock content %}
|