Template source: base.html

<!DOCTYPE html>{% load staticfiles %}
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=9">
    <title>{% block pagetitle %}{% if page_title %}{{ page_title }} | {% endif %}{% endblock %}Jangl</title>
    <meta name="description" content="">
    <link rel="shortcut icon" href="{% static 'icons/favicon.ico' %}" type="image/x-icon">
	<link rel="apple-touch-icon" href="{% static 'icons/apple-touch-icon.png' %}">

    <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.css' %}">
    <link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
    <link rel="stylesheet" type="text/css" href="{% static 'css/admin.css' %}">
{% block stylesheets %}{% endblock %}
    <script type="text/javascript" src="{% static 'js/modernizr.js' %}"></script>
    <script>window.jQuery || document.write('<script src="{% static 'js/jquery.js' %}"><\/script>')</script>
    <script type="text/javascript" src="{% static 'js/bootstrap.js' %}"></script>
    {{ form.media }}
    <!--[if IE]>
    <script type="text/javascript" src="{% static 'polyfills/Placeholders.min.js' %}"></script>
    <script type="text/javascript" src="{% static 'polyfills/array.generics.min.js' %}"></script>
    <![endif]-->
    <script type="text/javascript" src="{% static 'libs/jquery-ui/jquery-ui.js' %}"></script>
    {% include 'sentry.html' %}
    <script type="text/javascript" src="{% static 'js/jangl-admin.js' %}"></script>
    {% block javascript %}{% endblock %}
</head>
<body class="admin-page {% block bodyclass %}{% endblock %}">
    <header>
        <div class="container">
            <h1><a href="{% url 'home' %}" style="background-image: url({% static 'img/rpm-logo@2x.png' %})">Jangl Admin</a></h1>
            {% block nav %}{% endblock %}
            {% block dropdown_nav %}
            {% include 'dropdown_nav.html' %}
            {% endblock %}
        </div>
    </header>
    <div class="subnav">
        <div class="container">
            {% block subnav %}
            <nav><ul></ul></nav>
            {% endblock %}
        </div>
    </div>
    <div class="body">
        <div class="container page-container">
{% block page %}
            <div class="content">
            {% block messages %}{% if messages %}
            <ul class="messagelist">{% for message in messages %}
              <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message|capfirst }}</li>
            {% endfor %}</ul>
            {% endif %}{% endblock %}
            <ol class="breadcrumb">
                {% block breadcrumb %}<li class="active">Home</li>{% endblock %}
            </ol>
            {% block section_title %}{% if section_title %}
                <div class="page-header">
                    <h2>{{ section_title }}</h2>
                    <div class="btn-group">{% block header_buttons %}{% endblock %}</div>
                </div>
            {% endif %}{% endblock %}
{% block content %}{% endblock %}
            </div>
{% endblock %}
        </div>
    </div>
    <footer>
        <div class="container">
            <div class="row">
                <div class="col-xs-6">
                    <p class="copyright">&copy;{% now 'Y' %} <a href="http://www.revpointmedia.com" target="_blank">RevPoint Media</a>. All Rights Reserved.</p>
                </div>
                {% block footer_links %}{% endblock %}
            </div>
        </div>
    </footer>
<div id="popupModal" class="modal fade"></div>
{% block extrabody %}{% endblock %}
</body>
</html>