From 2fd6ee5a73a3c4ca3d6937c88c7d2ccce00fca5a Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 11 Mar 2026 12:37:00 +0100 Subject: [PATCH] feat(templates/base.html): enclose content block in padded div --- kursy/templates/base.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kursy/templates/base.html b/kursy/templates/base.html index 4f36411..1cf510f 100644 --- a/kursy/templates/base.html +++ b/kursy/templates/base.html @@ -45,8 +45,10 @@ {% include "header.html" %} {% block body %} - {% block content %} - {% endblock content %} +
+ {% block content %} + {% endblock content %} +
{% endblock body %} {# Global javascript #}