You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
{% load staticfiles %}
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge, chrome=1'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<!--<meta name='viewport' content='initial-scale=1.0, user-scalable=no, maximum-scale=1'>-->
|
|
|
|
<title>Archilance</title>
|
|
|
|
<link rel='stylesheet' href='{% static "css/bootstrap.css" %}'>
|
|
<link rel='stylesheet' href='{% static "css/font-awesome.min.css" %}'>
|
|
<link rel='stylesheet' href='{% static "css/reset.css" %}'>
|
|
<link rel='stylesheet' href='{% static "lib/bootstrap-select/css/bootstrap-select.css" %}'>
|
|
<link rel='stylesheet' href='{% static "css/swiper.min.css" %}'>
|
|
|
|
<link rel='stylesheet' href='{% static "css/main.css" %}'>
|
|
<link rel='stylesheet' href='{% static "css/extra.css" %}'> <!-- Our additional CSS -->
|
|
<link rel='stylesheet' href='{% static "css/dev-colors.css" %}'> <!-- Dev-time only, temporary!!! -->
|
|
</head>
|
|
|
|
<body>
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="c" style='padding: 10px; margin-bottom: 6px'>{{ message | safe }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<script src='{% static "js/jquery-2.2.3.min.js" %}'></script>
|
|
<script src='{% static "js/bootstrap.min.js" %}'></script>
|
|
<script src='{% static "lib/bootstrap-select/js/bootstrap-select.js" %}'></script>
|
|
|
|
<script src='{% static "js/main.js" %}'></script>
|
|
{% block js_block %} {% endblock %}
|
|
</body>
|
|
</html>
|
|
|