Files
cjsatnarine.space/blog/templates/blog-page.html
2025-03-21 01:18:06 -04:00

12 lines
298 B
HTML

{% extends "base.html" %}
{% block content %}
<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a>
<h1 id="title" class="title">
{{ page.title }}
</h1>
<h3 id="subtitle" class="subtitle"><strong>{{ page.date }}</strong></h3>
{{ page.content | safe }}
{% endblock content %}