From 585e147cfec092d5913509bb1a8183b9ee7bf284 Mon Sep 17 00:00:00 2001 From: Mischa Date: Thu, 18 Jun 2026 00:40:44 +0200 Subject: [PATCH] Fix theme: add partials/base.html.twig for plugin template compatibility --- .../intotheeast/templates/default.html.twig | 21 +------------------ .../templates/partials/base.html.twig | 20 ++++++++++++++++++ 2 files changed, 21 insertions(+), 20 deletions(-) create mode 100644 themes/intotheeast/templates/partials/base.html.twig diff --git a/themes/intotheeast/templates/default.html.twig b/themes/intotheeast/templates/default.html.twig index c5d276e..2ee42a2 100644 --- a/themes/intotheeast/templates/default.html.twig +++ b/themes/intotheeast/templates/default.html.twig @@ -1,20 +1 @@ - - - - - - {% if page.title %}{{ page.title }} | {% endif %}{{ site.title }} - - - - -
- {% block content %}{% endblock %} -
- - +{% extends 'partials/base.html.twig' %} diff --git a/themes/intotheeast/templates/partials/base.html.twig b/themes/intotheeast/templates/partials/base.html.twig new file mode 100644 index 0000000..c5d276e --- /dev/null +++ b/themes/intotheeast/templates/partials/base.html.twig @@ -0,0 +1,20 @@ + + + + + + {% if page.title %}{{ page.title }} | {% endif %}{{ site.title }} + + + + +
+ {% block content %}{% endblock %} +
+ +