2018-01-16 22:08:47 -05:00
<!doctype html>
2018-01-22 23:53:46 -05:00
<html lang="en">
2019-01-10 23:20:14 -05:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-06-28 10:20:44 -04:00
<title>{{ title or metadata.title }}</title>
<meta name="description" content="{{ description or metadata.description }}">
2019-01-10 23:20:14 -05:00
<link rel="stylesheet" href="{{ '/css/index.css' | url }}">
<link rel="stylesheet" href="{{ '/css/prism-base16-monokai.dark.css' | url }}">
2022-03-03 18:11:08 -05:00
<link rel="stylesheet" href="{{ '/css/prism-diff.css' | url }}">
2019-01-10 23:20:14 -05:00
<link rel="alternate" href="{{ metadata.feed.path | url }}" type="application/atom+xml" title="{{ metadata.title }}">
2019-10-30 14:27:38 -04:00
<link rel="alternate" href="{{ metadata.jsonfeed.path | url }}" type="application/json" title="{{ metadata.title }}">
2019-01-10 23:20:14 -05:00
</head>
<body>
<header>
<h1 class="home"><a href="{{ '/' | url }}">{{ metadata.title }}</a></h1>
2019-11-11 17:22:08 -05:00
2020-01-02 21:51:47 -05:00
{#- Read more about `eleventy-navigation` at https://www.11ty.dev/docs/plugins/navigation/ #}
<ul class="nav">
{%- for entry in collections.all | eleventyNavigation %}
<li class="nav-item{% if entry.url == page.url %} nav-item-active{% endif %}"><a href="{{ entry.url | url }}">{{ entry.title }}</a></li>
{%- endfor %}
</ul>
2019-01-10 23:20:14 -05:00
</header>
2018-01-16 22:08:47 -05:00
2019-01-10 23:20:14 -05:00
<main{% if templateClass %} class="{{ templateClass }}"{% endif %}>
2020-07-27 16:18:51 -04:00
<!-- Delete this message -->
2022-06-29 12:10:24 -04:00
<div class="infobox">
2019-01-10 23:20:14 -05:00
<ol>
<li>Edit the <code>_data/metadata.json</code> with your blog’ s information.</li>
2020-01-03 12:19:51 -05:00
<li>(Optional) Edit <code>.eleventy.js</code> with your <a href="https://www.11ty.dev/docs/config/">configuration preferences</a>.</li>
2019-01-10 23:20:14 -05:00
<li>Delete this message from <code>_includes/layouts/base.njk</code>.</li>
</ol>
2020-07-17 10:36:28 -04:00
<p><em>This is an <a href="https://www.11ty.dev/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p>
2019-01-10 23:20:14 -05:00
</div>
2020-07-27 16:18:51 -04:00
<!-- Stop deleting -->
2018-01-26 00:36:31 -05:00
2019-01-10 23:20:14 -05:00
{{ content | safe }}
</main>
2018-01-16 22:08:47 -05:00
2019-01-10 23:20:14 -05:00
<footer></footer>
2018-01-22 09:17:48 -05:00
2019-01-10 23:20:14 -05:00
<!-- Current page: {{ page.url | url }} -->
</body>
2018-01-19 01:32:20 -05:00
</html>