23 lines
561 B
Text
23 lines
561 B
Text
|
|
---
|
||
|
|
layout: base.njk
|
||
|
|
---
|
||
|
|
|
||
|
|
<div class="window page-window focused"
|
||
|
|
data-wid="page-window"
|
||
|
|
data-title="{{ title }}"
|
||
|
|
data-close="back">
|
||
|
|
|
||
|
|
<div class="window-content">
|
||
|
|
{% if date %}
|
||
|
|
<p style="color:var(--p-dim); font-size:13px; margin-bottom:16px;">
|
||
|
|
{{ date | readableDate }}
|
||
|
|
{% if tags %} · {{ tags | join(', ') }}{% endif %}
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
{{ content | safe }}
|
||
|
|
<hr style="border:none; border-top:1px solid var(--p-dim); margin:24px 0 16px">
|
||
|
|
<p><a href="/blog/">← back to posts</a></p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|