mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-30 21:49:22 +00:00
74 lines
2.8 KiB
HTML
Executable File
74 lines
2.8 KiB
HTML
Executable File
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Deep South Sounds</title>
|
|
{% include 'inc/meta.html' %}
|
|
{% load compress %}
|
|
{% load static %}
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300"/>
|
|
<link href='http://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static "css/dss.overrides.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/bootstrap.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/jasny-bootstrap.css" %}">
|
|
|
|
<link rel="stylesheet" href="{% static "css/ace/fullcalendar.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace/dropzone.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace/uncompressed/ace.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace/uncompressed/ace-skins.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace/uncompressed/font-awesome.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/select2.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/ace/bootstrap-editable.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace/jquery.gritter.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/jquery.fileupload-ui.css" %}"/>
|
|
|
|
<link rel="stylesheet" href="{% static "css/peneloplay.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/toastr.css" %}">
|
|
|
|
<link rel="stylesheet" href="{% static "css/dss.main.css" %}">
|
|
|
|
{% endcompress %}
|
|
|
|
{% block headerstyles %}
|
|
{% endblock %}
|
|
{% block headerscripts %}
|
|
{% endblock %}
|
|
<!--if lt IE 9script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
|
|
-->
|
|
</head>
|
|
<body>
|
|
{% include 'inc/analytics.html' %}
|
|
<div id="header"></div>
|
|
<div class="space-6"></div>
|
|
<div class="body-content col-md-9">
|
|
<div class="row">
|
|
<div class="ua-message">{{ ua_html|safe }}</div>
|
|
</div>
|
|
<div class="row">
|
|
<div id="content"></div>
|
|
</div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="side-content" class="col-md-3 hidden-phone">
|
|
{% block sidecontent %}
|
|
{% endblock %}
|
|
<div id="sidebar"></div>
|
|
<div id="site-content-fill"></div>
|
|
</div>
|
|
<div id="footer"></div>
|
|
<script src="/js/settings/"></script>
|
|
{% compress js %}
|
|
<script src="{{ STATIC_URL }}js/lib/respond.js"></script>
|
|
<script src="{{ STATIC_URL }}js/com.podnoms.storage.js"></script>
|
|
<script type="text/javascript">
|
|
var burst = Date.now();
|
|
</script>
|
|
{% endcompress %}
|
|
<script src="{{ STATIC_URL }}js/lib/require.js" data-main="{{ STATIC_URL }}js/main.js?bust={{ bust }}"></script>
|
|
|
|
{% block footerscripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|