Files
brendan-ch.github.io/_layouts/post.html
2026-01-30 13:18:11 -08:00

28 lines
560 B
HTML

---
layout: default
---
<div class="project-header">
<div class="breadcrumb-wrapper">
<a href="/notes">All notes</a>
<p>//</p>
<p>{{ page.date | date: "%Y.%m.%d" }}</p>
</div>
<h1>{{ page.title }}</h1>
</div>
{{ content }}
<div class="project-footer">
<div>
{% if page.next != nil %}
<a href="{{ page.next.url }}">Newer</a>
{% endif %}
</div>
<div>
{% if page.previous != nil %}
<a href="{{ page.previous.url }}">Older</a>
{% endif %}
</div>
</div>