<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>{{ site_name }}</title>
|
|
<meta name="description" content="{{ site_name }}" />
|
|
<meta name="author" content="Sam Black" />
|
|
|
|
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
{% assets "css_lapwing" %}
|
|
<link rel="stylesheet" href="{{ ASSET_URL }}" />
|
|
{% endassets %}
|
|
{% block page_css %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="uk-offcanvas-content">
|
|
{% include "_menu.html" %}
|
|
|
|
{% block page_content %}{% endblock %}
|
|
|
|
{% include "_footer.html" %}
|
|
|
|
</div>
|
|
{% assets "js_lapwing" %}
|
|
<script src="{{ ASSET_URL }}"></script>
|
|
{% endassets %}
|
|
{% block page_js %}{% endblock %}
|
|
</body>
|
|
</html>
|