site/_zola/templates/page.html
zayd 9b9fdff01c New post, general site updates, now hopefully valid XHTML
Signed-off-by: zayd <zayd@disroot.org>
2025-03-24 08:21:27 -04:00

14 lines
394 B
HTML

{% extends "index.html" %}
{% block title %}
<title>{{ config.title }} - {{ page.title }}</title>
{% endblock title %}
{% block content %}
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
<h2 class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</h2>
{{ page.content | replace(from="%5B", to="[") | replace(from="%5D", to="]") | safe }}
</div>
{% endblock content %}