diff --git a/files/templates/default.html b/files/templates/default.html index af1ef1fefd..f61fcb72a0 100644 --- a/files/templates/default.html +++ b/files/templates/default.html @@ -37,9 +37,10 @@ {% set alt = ['/h/', sub, 'banner']|join %} {% elif SITE_NAME == "rDrama" %} {% set href = "https://secure.transequality.org/site/Donation2?df_id=1480" %} + {% set expand = false %} {% endif %} - {{ macros.banner(src, href, alt) }} + {{ macros.banner(src, href, alt, expand) }} {% endif %} {% endblock %} diff --git a/files/templates/util/macros.html b/files/templates/util/macros.html index 2009f0dbde..7e770dd910 100644 --- a/files/templates/util/macros.html +++ b/files/templates/util/macros.html @@ -1,6 +1,6 @@ -{% macro banner(src, href, alt) %} - - {{alt|default('site banner')}} +{% macro banner(src, href, alt, expand) %} + + {{alt|default('site banner')}} {% endmacro %}