From d245c05825743e20d2df2900c4f8313d82ebcfe1 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Mon, 2 Feb 2026 21:10:12 +0530 Subject: first commit --- templates/post.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/post.html (limited to 'templates/post.html') diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..e055397 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,29 @@ +{% import "macros/header.html" as header %} +{% import "macros/date.html" as date %} + +{% extends "base.html" %} + +{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %} +{% block description %}{{ page.description }}{% endblock description %} + +{% block og_title %}{{ page.title }} - {{ config.title }}{% endblock og_title %} +{% block og_description %}{{ page.description }}{% endblock og_description %} + +{% block header %} +{{ header::site_header(activePage="/posts") }} +{% endblock header %} + +{% block main %} +
+
+

{{ page.title }}

+

+ +

+
+
+ {{ page.content | safe }} +
+{% endblock main %} -- cgit v1.2.3