From 5f6b9f7146e6f238e44a2c5d10e69e1f4906a336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20=E2=80=9CCLOVIS=E2=80=9D=20Canet?= Date: Sat, 1 Mar 2025 22:43:07 +0100 Subject: [PATCH] build(website): Explicitly configure the blog post template --- docs/website/overrides/blog-post.html | 173 ++++++++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100644 docs/website/overrides/blog-post.html diff --git a/docs/website/overrides/blog-post.html b/docs/website/overrides/blog-post.html new file mode 100644 index 0000000..d3b872c --- /dev/null +++ b/docs/website/overrides/blog-post.html @@ -0,0 +1,173 @@ + + +{% extends "main.html" %} + +{% import "partials/nav-item.html" as item with context %} + + +{% block container %} +
+ + +
+
+
+ + + + {% if "toc.integrate" in features %} + {% include "partials/toc.html" %} + {% endif %} +
+
+
+ + +
+ {% block content %} + {% include "partials/content.html" %} + {% endblock %} +
+
+{% endblock %} -- 2.51.2