60 lines
2.1 KiB
HTML
60 lines
2.1 KiB
HTML
{% load available_content static compress sass_tags %}
|
|
<!doctype html>
|
|
<html class="no-js" lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
{% block head %}
|
|
<title>CAMP</title>
|
|
{% endblock %}
|
|
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans"/>
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/foundation.css" %}?20250201">
|
|
{% compress css file site %}
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/main.css" %}">
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/app.css" %}">
|
|
<link rel="stylesheet" href="{% sass_src 'css/site.scss' %}"></link>
|
|
{% endcompress %}
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="off-canvas-wrapper-inner" data-off-canvas-wrapper>
|
|
|
|
<div class="off-canvas position-right" id="offCanvasRight" data-off-canvas data-position="right">
|
|
<ul class="vertical-menu">
|
|
<li><a href="/">HOME</a></li>
|
|
<li><a href="/about">ABOUT</a></li>
|
|
{% available_content as sections %}
|
|
{% for url, title in sections %}
|
|
<li><a href="{{url}}index/">{{title}}</a></li>
|
|
{% endfor %}
|
|
<li><a href="/contact">CONTACT</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="off-canvas-content" data-off-canvas-content>
|
|
<div class="title-bar-right">
|
|
<button class="menu-icon" type="button" data-toggle="offCanvasRight"></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<form method="get" action='/search/'>
|
|
<input type="search" name="q" class="search-form" value="{{query|default:""}}">
|
|
<input type="submit" style="visibility: hidden;" />
|
|
</form>
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
<script src="{% static "js/jquery.js" %}"></script>
|
|
<script src="{% static "js/foundation.js" %}"></script>
|
|
{% compress js file base %}
|
|
<script src="{% static "js/app.js" %}"></script>
|
|
<script src="{% static "js/what-input.js" %}"></script>
|
|
<script src="{% static "js/gallery.js" %}"></script>
|
|
{% endcompress %}
|
|
{% block end %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|