cmpuqrct/templates/base.html
author Tero Marttila <terom@fixme.fi>
Wed, 21 Aug 2013 02:14:24 +0300
changeset 53 8e6e7ca39e48
permissions -rw-r--r--
split cmpuqrct/templates with base and analytics
{% load staticfiles %}
<html>
    <head>
        <title>{% block title %}Yo Dawg. We heard you liked Post-its.{% endblock %}</title>
        {% block head %}{% endblock %}
    </head>
    <body>
        {% block body %}{% endblock %}
        {% include "analytics.html" %}
    </body>
</html>