6f838a09b8
Moved the tests to the horizon portion since they test core functionality. This also required moving some of the templates, etc. that belong in horizon to their proper homes. Change-Id: I7d9758845b81e4b8bcf1ffaaff4f6e237b4fe9f8
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
{% load branding i18n %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
|
|
<title>{% block title %}{% endblock %} - {% site_branding %}</title>
|
|
{% include "horizon/_conf.html" %}
|
|
{% block css %}
|
|
{% include "_stylesheets.html" %}
|
|
{% endblock %}
|
|
{% include "horizon/client_side/_script_loader.html" %}
|
|
</head>
|
|
<body id="{% block body_id %}{% endblock %}">
|
|
{% block content %}
|
|
<div id="container">
|
|
{% block sidebar %}
|
|
{% include 'horizon/common/_sidebar.html' %}
|
|
{% endblock %}
|
|
<div id='main_content'>
|
|
<div class='topbar'>
|
|
{% include "_header.html" %}
|
|
{% block page_header %}{% endblock %}
|
|
</div>
|
|
{% include "horizon/_messages.html" %}
|
|
{% block main %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
<div id="footer">
|
|
{% block footer %}{% endblock %}
|
|
</div>
|
|
{% block js %}
|
|
{% include "horizon/_scripts.html" %}
|
|
{% endblock %}
|
|
<div id="modal_wrapper" />
|
|
</body>
|
|
</html>
|