Update downloads.html.twig

the menu-part was missing in downloads.html.twig

{% block menu %}
  {% include 'partials/sidebar_right.html.twig' %}
{% endblock %}
This commit is contained in:
mjz68 2024-03-19 18:13:25 +01:00 committed by GitHub
parent 653fc64366
commit 0fb3191b12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,9 @@
{% extends 'partials/base.html.twig' %}
{% block menu %}
{% include 'partials/sidebar_right.html.twig' %}
{% endblock %}
{% block content %}
<article class="post">
<header>
@ -52,4 +56,4 @@
{% if show_sidebar == true %}
{% include 'partials/sidebar_left.html.twig' %}
{% endif %}
{% endblock %}
{% endblock %}