From 7a66ed9c8a715d9aebfd39904623425f0072cf85 Mon Sep 17 00:00:00 2001 From: Elke Kreim <elke.kreim@hs-hannover.de> Date: Wed, 11 Mar 2020 14:03:12 +0100 Subject: [PATCH] Add block to body tag --- hshassets/templates/hshassets/layout/base.html | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hshassets/templates/hshassets/layout/base.html b/hshassets/templates/hshassets/layout/base.html index 92da38a1..301ba5b0 100644 --- a/hshassets/templates/hshassets/layout/base.html +++ b/hshassets/templates/hshassets/layout/base.html @@ -22,7 +22,7 @@ {% endblock %} {% block post-style %}{% endblock %} </head> - <body> + <body {% block bodytag %}{% endblock %}> {% block body %}{% endblock %} {% block pre-script %}{% endblock %} diff --git a/setup.py b/setup.py index 58b1edb3..f48c6ac5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-hshassets', - version='2.2.8', + version='2.2.13', packages=find_packages(), include_package_data=True, license='MIT License', -- GitLab