Files
straysong_pico_theme/index.twig
Jennifer C J Radtke 529b95e89d try moving comments inside styled div
isso.css has explicit 0 margin which is causing the comments to be offset
2024-02-22 19:30:36 +00:00

76 lines
3.0 KiB
Twig
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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">
<p><a href="{{ base_url }}">{{ site_title }}</a></p>
<ul class="nav">
{% for page in pages(depthOffset=-1) %}
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</header>
<section class="content container">
<div class="row">
{{ content }}
</div>
</section>
<div class="container">
<script data-isso="//comments.writing.straysong.co.uk/"
src="//comments.writing.straysong.co.uk/js/embed.min.js"></script>
<section id="isso-thread">
<noscript>Javascript is needed to display comments.</noscript>
</section>
</div>
<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</a></p>
</div>
</div>
</footer>
<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>
<!-- End Document
-->
</body>
</html>