mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-28 04:28:01 +00:00
65 lines
2.2 KiB
HTML
Executable File
65 lines
2.2 KiB
HTML
Executable File
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Deep South Sounds</title>
|
|
{% include 'inc/meta.html' %}
|
|
{% load require %}
|
|
{% load compress %}
|
|
{% load static %}
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300"/>
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static "css/bootstrap.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/font-awesome.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/jasny-bootstrap.css" %}">
|
|
|
|
<link rel="stylesheet" href="{% static "css/bootstrap-editable.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace-skins.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/jquery.gritter.css" %}"/>
|
|
|
|
|
|
<link rel="stylesheet" href="{% static "css/select2.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/com.podnoms.player.css" %}">
|
|
<link rel="stylesheet" href="{% static "css/toastr.css" %}">
|
|
|
|
<link rel="stylesheet" href="{% static "css/deepsouthsounds.css" %}">
|
|
|
|
{% endcompress %}
|
|
|
|
{% block headerscripts %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include 'inc/facebook.html' %}
|
|
{% include 'inc/analytics.html' %}
|
|
{% include 'inc/ancient_browser.html' %}
|
|
<div id="header"></div>
|
|
<div class="space-6"></div>
|
|
<div class="body-content col-md-9" id="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="side-content" class="col-md-3">
|
|
{% block sidecontent %}
|
|
{% endblock %}
|
|
<div id="sidebar"></div>
|
|
<div id="site-content-fill"></div>
|
|
</div>
|
|
<div id="footer"></div>
|
|
<script src="/js/settings/"></script>
|
|
{% require_module 'main' %}
|
|
|
|
{% compress js %}
|
|
{% if DEBUG %}
|
|
<script src="{{ STATIC_URL }}js/lib/sm/soundmanager2.js"></script>
|
|
{% else %}
|
|
<script src="{{ STATIC_URL }}js/lib/sm/soundmanager2-nodebug.js"></script>
|
|
{% endif %}
|
|
<script src="{{ STATIC_URL }}js/com.podnoms.storage.js"></script>
|
|
<script src="{{ STATIC_URL }}js/com.podnoms.player.js"></script>
|
|
{% endcompress %}
|
|
{% block footerscripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|