From 001cbffd7460a421ed3365eac3caa018b62ccdc2 Mon Sep 17 00:00:00 2001 From: giles Date: Mon, 23 Feb 2026 17:32:25 +0000 Subject: [PATCH] =?UTF-8?q?Add=20minimal=20home=20page=20templates=20?= =?UTF-8?q?=E2=80=94=20content=20only,=20no=20title=20bar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- .../templates/_types/home/_oob_elements.html | 19 +++++++++++++++++++ browser/templates/_types/home/index.html | 14 ++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 browser/templates/_types/home/_oob_elements.html create mode 100644 browser/templates/_types/home/index.html diff --git a/browser/templates/_types/home/_oob_elements.html b/browser/templates/_types/home/_oob_elements.html new file mode 100644 index 0000000..03a4f17 --- /dev/null +++ b/browser/templates/_types/home/_oob_elements.html @@ -0,0 +1,19 @@ +{% extends 'oob_elements.html' %} + +{% from '_types/root/header/_oob.html' import root_header_start, root_header_end with context %} +{% from '_types/root/_oob_menu.html' import mobile_menu with context %} + +{% block oobs %} + {% from '_types/root/header/_header.html' import header_row with context %} + {{ header_row(oob=True) }} +{% endblock %} + +{% block content %} +
+
+ {% if post.html %} + {{post.html|safe}} + {% endif %} +
+
+{% endblock %} diff --git a/browser/templates/_types/home/index.html b/browser/templates/_types/home/index.html new file mode 100644 index 0000000..e5df191 --- /dev/null +++ b/browser/templates/_types/home/index.html @@ -0,0 +1,14 @@ +{% extends '_types/root/_index.html' %} +{% block meta %} + {% include '_types/post/_meta.html' %} +{% endblock %} + +{% block content %} +
+
+ {% if post.html %} + {{post.html|safe}} + {% endif %} +
+
+{% endblock %}