Refactor all templates to dictpress v5 (Rust/Tera templates).

This commit is contained in:
2026-03-26 14:59:30 +05:30
parent c07b8331c3
commit b13a23bbc4
22 changed files with 1032 additions and 1585 deletions
+5 -7
View File
@@ -1,10 +1,8 @@
{{ define "message" }}
{{ template "header" . }}
{% extends "base.html" %}
{% block content %}
<section class="content">
<h1>{{ .Data.Title }}</h1>
<p>{{ .Data.Description }}</p>
<h1>{{ title }}</h1>
<p>{{ description }}</p>
</section>
{{ template "footer" . }}
{{ end }}
{% endblock %}