66 lines
3.3 KiB
HTML
66 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="no-js">
|
|
<head>
|
|
|
|
<!-- Basic Page Needs
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<meta charset="utf-8" />
|
|
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
|
|
{% if meta.description %}
|
|
<meta name="description" content="{{ meta.description }}">
|
|
{% endif %}
|
|
{% if meta.robots %}
|
|
<meta name="robots" content="{{ meta.robots }}">
|
|
{% endif %}
|
|
|
|
<!-- Mobile Specific Metas
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- CSS
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<link rel="stylesheet" href="{{ theme_url }}/css/normalize.css">
|
|
<link rel="stylesheet" href="{{ theme_url }}/css/skeleton.css">
|
|
<link rel="stylesheet" href="{{ theme_url }}/css/custom-h-nav.css">
|
|
|
|
<!-- Favicon
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<link rel="icon" type="image/png" href="{{ theme_url }}/images/favicon.png">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Primary Page Layout
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<header>
|
|
<div class="container">
|
|
<div class="row">
|
|
<h1><a href="{{ base_url }}">{{ site_title }}</a></h1>
|
|
<ul class="nav">
|
|
{% for page in pages %}
|
|
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="content container">
|
|
<div class="row">
|
|
{{ content }}
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<div class="row">
|
|
Unless otherwise stated, work on this website is by Jennifer C J Radtke. <p>This work is licensed under <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt="Creative commons"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt="Attribution"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" alt="Non Commercial"><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt="Share Alike"></a></p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- End Document
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
</body>
|
|
</html>
|