rename to twig???

This commit is contained in:
Jennifer C J Radtke
2024-02-18 08:36:49 +00:00
parent ebdf7c4b56
commit c035dd5667

78
reflection-index.twig Normal file
View File

@@ -0,0 +1,78 @@
<!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 }}
{% for page in pages("Reflections")|sort_by("time")|reverse if not page.hidden %}
<div class="post">
<h3><a href="{{ page.url }}">{{ page.title }}</a></h3>
<p class="date">{{ page.date_formatted }}</p>
<p>{{ page.description }}</p>
<p>caps</p>
<p class="excerpt">{{ page.Description }}</p>
</div>
{% endfor %}
</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</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>