70 lines
2.7 KiB
HTML
70 lines
2.7 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">
|
|||
|
|
|
|||
|
|
<!-- Font
|
|||
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|||
|
|
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
|
|||
|
|
|
|||
|
|
<!-- 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">
|
|||
|
|
<a href="https://github.com/bananana/skull">Skull theme</a> for <a href="http://picocms.org/">Pico CMS</a> was made by <a href="http://pavelmamontov.com">Pavel Mamontov</a>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</footer>
|
|||
|
|
|
|||
|
|
<!-- End Document
|
|||
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|||
|
|
</body>
|
|||
|
|
</html>
|