2012-02-21 02:08:13 +00:00
|
|
|
{% load branding i18n %}
|
2015-06-14 22:49:53 +00:00
|
|
|
{% load context_selection %}
|
2011-10-28 22:50:59 +00:00
|
|
|
<!DOCTYPE html>
|
2011-06-16 01:14:15 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2014-09-09 05:26:38 +00:00
|
|
|
<meta content='IE=edge' http-equiv='X-UA-Compatible' />
|
2011-06-16 01:14:15 +00:00
|
|
|
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
|
2014-01-30 18:37:53 +00:00
|
|
|
{% include "horizon/_custom_meta.html" %}
|
2012-04-14 04:46:04 +00:00
|
|
|
<title>{% block title %}{% endblock %} - {% site_branding %}</title>
|
2013-06-29 10:11:25 +00:00
|
|
|
{% comment %} Load CSS sheets before Javascript {% endcomment %}
|
2012-02-21 02:08:13 +00:00
|
|
|
{% block css %}
|
|
|
|
{% include "_stylesheets.html" %}
|
|
|
|
{% endblock %}
|
2015-06-14 22:49:53 +00:00
|
|
|
{% iframe_embed_settings %}
|
2013-06-29 10:11:25 +00:00
|
|
|
{% include "horizon/_conf.html" %}
|
2012-06-23 20:58:35 +00:00
|
|
|
{% include "horizon/client_side/_script_loader.html" %}
|
2014-01-30 18:37:53 +00:00
|
|
|
{% include "horizon/_custom_head_js.html" %}
|
2016-01-07 07:09:04 +00:00
|
|
|
<base href="{{ WEBROOT }}" />
|
2011-06-16 01:14:15 +00:00
|
|
|
</head>
|
2015-11-17 08:10:44 +00:00
|
|
|
<body id="{% block body_id %}{% endblock %}" ng-app='horizon.app' ng-strict-di>
|
2015-01-30 19:38:11 +00:00
|
|
|
<noscript>
|
|
|
|
<div class="javascript_disabled_alert">
|
2015-06-14 12:46:23 +00:00
|
|
|
{% trans "This application requires JavaScript to be enabled in your web browser." %}
|
2015-01-30 19:38:11 +00:00
|
|
|
</div>
|
|
|
|
</noscript>
|
2011-07-14 22:32:11 +00:00
|
|
|
{% block content %}
|
2012-02-21 02:08:13 +00:00
|
|
|
<div id="container">
|
2014-01-30 00:40:46 +00:00
|
|
|
<div class='topbar'>
|
2012-01-24 22:33:25 +00:00
|
|
|
{% include "_header.html" %}
|
2014-01-30 00:40:46 +00:00
|
|
|
</div>
|
|
|
|
<div id='main_content'>
|
2012-07-13 23:42:28 +00:00
|
|
|
{% include "horizon/_messages.html" %}
|
2014-01-30 00:40:46 +00:00
|
|
|
{% block sidebar %}
|
|
|
|
{% include 'horizon/common/_sidebar.html' %}
|
|
|
|
{% endblock %}
|
|
|
|
<div id='content_body'>
|
2014-10-02 15:45:06 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2014-12-18 10:21:22 +00:00
|
|
|
{% block page_header %}
|
|
|
|
{% include "horizon/common/_page_header.html" with title=page_title %}
|
|
|
|
{% endblock %}
|
2014-10-02 15:45:06 +00:00
|
|
|
{% block main %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-01-30 00:40:46 +00:00
|
|
|
</div>
|
2012-01-24 22:33:25 +00:00
|
|
|
</div>
|
2011-06-16 01:14:15 +00:00
|
|
|
</div>
|
2011-07-14 22:32:11 +00:00
|
|
|
{% endblock %}
|
|
|
|
<div id="footer">
|
|
|
|
{% block footer %}{% endblock %}
|
2011-06-16 01:14:15 +00:00
|
|
|
</div>
|
2012-02-21 02:08:13 +00:00
|
|
|
{% block js %}
|
2012-06-24 00:06:37 +00:00
|
|
|
{% include "horizon/_scripts.html" %}
|
2012-02-14 03:34:56 +00:00
|
|
|
{% endblock %}
|
2014-08-21 21:41:28 +00:00
|
|
|
<div id="modal_wrapper"></div>
|
2011-06-16 01:14:15 +00:00
|
|
|
</body>
|
|
|
|
</html>
|