2018-01-16 22:08:47 -05:00
<!doctype html>
2018-01-22 23:53:46 -05:00
<html lang="en">
2018-01-16 22:08:47 -05:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2018-01-22 09:17:48 -05:00
<title>{{ title or metadata.title }}</title>
2018-01-28 00:22:40 -05:00
<link rel="stylesheet" href="{{ '/css/index.css' | url }}">
<link rel="stylesheet" href="{{ '/css/prism-base16-monokai.dark.css' | url }}">
2018-01-25 09:23:01 -05:00
<link rel="alternate" href="{{ metadata.feed.path | url }}" type="application/atom+xml" title="{{ metadata.title }}">
2018-01-16 22:08:47 -05:00
</head>
<body>
<header>
2018-01-28 00:22:40 -05:00
<h1 class="home"><a href="{{ '/' | url }}">{{ metadata.title }}</a></h1>
2018-01-16 22:08:47 -05:00
<ul class="nav">
2018-01-16 22:38:57 -05:00
{%- for nav in collections.nav | reverse -%}
2018-01-22 09:17:48 -05:00
<li class="nav-item{% if nav.url == page.url %} nav-item-active{% endif %}"><a href="{{ nav.url | url }}">{{ nav.data.navtitle }}</a></li>
2018-01-16 22:08:47 -05:00
{%- endfor -%}
2018-01-22 09:17:48 -05:00
</ul>
2018-01-16 22:08:47 -05:00
</header>
2018-01-22 23:53:46 -05:00
<main{% if templateClass %} class="{{ templateClass }}"{% endif %}>
2018-01-26 00:36:31 -05:00
<div class="warning">
<ol>
<li>Edit the <code>_data/metadata.json</code> with your blog’ s information.</li>
<li>(Optional) Edit <code>.eleventy.js</code> with your configuration preferences.</li>
2018-06-13 09:38:48 -04:00
<li>Delete this message from <code>_includes/layouts/base.njk</code>.</li>
2018-01-26 00:36:31 -05:00
</ol>
<p><em>This is an <a href="https://www.11ty.io/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p>
</div>
2018-08-01 21:39:57 -04:00
{{ content | safe }}
2018-01-22 09:17:48 -05:00
</main>
2018-01-16 22:08:47 -05:00
2018-01-26 00:26:20 -05:00
<footer></footer>
2018-01-22 09:17:48 -05:00
<!-- Current page: {{ page.url | url }} -->
2018-01-16 22:08:47 -05:00
</body>
2018-01-19 01:32:20 -05:00
</html>