From 0fb3191b1227e5e1a373526180c5996bad9a105c Mon Sep 17 00:00:00 2001 From: mjz68 Date: Tue, 19 Mar 2024 18:13:25 +0100 Subject: [PATCH] Update downloads.html.twig the menu-part was missing in downloads.html.twig {% block menu %} {% include 'partials/sidebar_right.html.twig' %} {% endblock %} --- templates/downloads.html.twig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/downloads.html.twig b/templates/downloads.html.twig index b5c9ddc..081eca7 100644 --- a/templates/downloads.html.twig +++ b/templates/downloads.html.twig @@ -1,5 +1,9 @@ {% extends 'partials/base.html.twig' %} +{% block menu %} + {% include 'partials/sidebar_right.html.twig' %} +{% endblock %} + {% block content %}
@@ -52,4 +56,4 @@ {% if show_sidebar == true %} {% include 'partials/sidebar_left.html.twig' %} {% endif %} -{% endblock %} \ No newline at end of file +{% endblock %}