Files
straysong_pico_theme/index.twig

74 lines
3.0 KiB
Twig
Raw Normal View History

2015-01-02 02:27:03 -05:00
<!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">
2015-01-02 02:27:03 -05:00
<!-- 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">
2024-02-16 19:18:57 +00:00
<p><a href="{{ base_url }}">{{ site_title }}</a></p>
2015-01-02 02:27:03 -05:00
<ul class="nav">
2024-02-17 20:13:07 +00:00
{% for page in pages(depthOffset=-1) %}
2015-01-02 02:27:03 -05:00
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</div>
2015-01-02 02:27:03 -05:00
</div>
</header>
<section class="content container">
<div class="row">
2015-01-02 02:27:03 -05:00
{{ content }}
</div>
</section>
2024-02-22 18:50:06 +00:00
<script data-isso="//comments.writing.straysong.co.uk/"
src="//comments.writing.straysong.co.uk/js/embed.min.js"></script>
2024-02-22 18:57:29 +00:00
<section id="isso-thread" class="container">
<noscript>Javascript is needed to display comments.</noscript>
</section>
<footer>
<div class="container">
<div class="row">
2024-02-16 19:03:01 +00:00
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</a></p>
</div>
</div>
</footer>
2024-02-16 19:32:29 +00:00
<script src="https://www.biblegateway.com/public/link-to-us/tooltips/bglinks.js" type="text/javascript"></script>
<script type="text/javascript">
BGLinks.version = "NRSVA";
BGLinks.linkVerses();
</script>
2015-01-02 02:27:03 -05:00
<!-- End Document
-->
</body>
</html>