diff --git a/nsupdate/main/templates/main/home.html b/nsupdate/main/templates/main/home.html index 00fee1a..149109e 100644 --- a/nsupdate/main/templates/main/home.html +++ b/nsupdate/main/templates/main/home.html @@ -2,6 +2,10 @@ {% load bootstrap %} {% load static %} +{% block html_head %} +{% include "main/includes/home_html_head.html" %} +{% endblock %} + {% block content %} {% include "main/includes/home_top.html" %}
diff --git a/nsupdate/main/templates/main/includes/home_html_head.html b/nsupdate/main/templates/main/includes/home_html_head.html new file mode 100644 index 0000000..e3f473c --- /dev/null +++ b/nsupdate/main/templates/main/includes/home_html_head.html @@ -0,0 +1 @@ +{# here you can add to html head of the home view (only) #} diff --git a/nsupdate/templates/base.html b/nsupdate/templates/base.html index 0937611..3f1ecd7 100644 --- a/nsupdate/templates/base.html +++ b/nsupdate/templates/base.html @@ -15,6 +15,7 @@ {% include "includes/base_head.html" %} + {% block html_head %}{% endblock %}