From 23821211e03cd69cf87b2f264b48e0125fcac29d Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Mon, 3 Aug 2026 13:22:07 +0300 Subject: Add gemini protocol --- templates_html/base.html | 171 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 templates_html/base.html (limited to 'templates_html/base.html') diff --git a/templates_html/base.html b/templates_html/base.html new file mode 100644 index 0000000..82f185e --- /dev/null +++ b/templates_html/base.html @@ -0,0 +1,171 @@ + + + + + + + + + + {% if page.date %} + + {% endif %} + + {% if page.extra.keywords %} + + {% endif %} + + {% block title %} + {% if page.title %} + {{ page.title }} — {{ config.title }} + {% elif section.title %} + {{ section.title }} — {{ config.title }} + {% else %} + {{ config.title }} + {% endif %} + {% endblock %} + + {% block description %} + {% if page.description %} + + {% elif page.summary %} + + {% else %} + + {% endif %} + {% endblock %} + + + + + + + + + +
+ Jan Tuomi +
+
+ + +
{% block content %}{% endblock %}
+ + + + + + -- cgit v1.3