From f35a7b0e70032de2feec9f3bda09da44cf0e1073 Mon Sep 17 00:00:00 2001 From: srv Date: Mon, 28 Apr 2025 17:11:28 -0500 Subject: first commit --- libretube-theme/templates/page.html | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 libretube-theme/templates/page.html (limited to 'libretube-theme/templates/page.html') diff --git a/libretube-theme/templates/page.html b/libretube-theme/templates/page.html new file mode 100644 index 0000000..47db027 --- /dev/null +++ b/libretube-theme/templates/page.html @@ -0,0 +1,49 @@ +{% extends "base.html" %} + +{% block html_lang %}{{ page.lang }}{% endblock%} + +{% block head %} + {% block title %} + {{ page.title }} - {{SITENAME}} + {% endblock %} + {% import 'translations.html' as translations with context %} + {% if translations.entry_hreflang(page) %} + {{ translations.entry_hreflang(page) }} + {% endif %} + {{ super() }} + {% if page.styles %} + {% for style in page.styles %} + {{ style }} + {% endfor %} + {% endif %} + {% block seo %} + + + + + + + + + + + + + + + {% endblock %} +{% endblock head %} + +{%- block content -%} + +
+
+ +
+ {{ page.content }} +
+ +
+
+ +{%- endblock -%} -- cgit v1.2.3