add customization includes / templates for base template (add stuff to head and body)

This commit is contained in:
Thomas Waldmann 2013-11-04 00:03:26 +01:00
parent bdba38024b
commit 43838cff9b
3 changed files with 6 additions and 0 deletions

View File

@ -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" %}
<div class="jumbotron">

View File

@ -0,0 +1 @@
{# here you can add to html head of the home view (only) #}

View File

@ -15,6 +15,7 @@
<link rel="icon" type="image/png" href="{% static 'favicon.png' %}" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
{% include "includes/base_head.html" %}
{% block html_head %}{% endblock %}
</head>
<body>