2018-01-16 22:08:47 -05:00
|
|
|
|
<!doctype html>
|
2023-01-23 11:02:06 -05:00
|
|
|
|
<html lang="{{ metadata.language }}">
|
2023-01-23 12:37:44 -05:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>{{ title or metadata.title }}</title>
|
|
|
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
|
|
|
|
|
2023-01-23 15:39:36 -05:00
|
|
|
|
{#- Atom and JSON feeds included by default #}
|
2024-04-24 18:26:14 -04:00
|
|
|
|
<link rel="alternate" href="feed/atom.njk" type="application/atom+xml" title="{{ metadata.title }}">
|
2024-01-13 18:32:15 -05:00
|
|
|
|
<link rel="alternate" href="feed/json.njk" type="application/json" title="{{ metadata.title }}">
|
2023-01-23 15:39:36 -05:00
|
|
|
|
|
2023-01-23 12:37:44 -05:00
|
|
|
|
{#- Uncomment this if you’d like folks to know that you used Eleventy to build your site! #}
|
|
|
|
|
{#- <meta name="generator" content="{{ eleventy.generator }}"> #}
|
|
|
|
|
|
2023-02-06 15:12:02 -05:00
|
|
|
|
{#-
|
|
|
|
|
CSS bundles are provided via the `eleventy-plugin-bundle` plugin:
|
2023-02-02 18:35:18 -05:00
|
|
|
|
1. You can add to them using `{% css %}`
|
|
|
|
|
2. You can get from them using `{% getBundle "css" %}` or `{% getBundleFileUrl "css" %}`
|
2023-02-06 15:12:02 -05:00
|
|
|
|
3. You can do the same for JS: {% js %}{% endjs %} and <script>{% getBundle "js" %}</script>
|
|
|
|
|
4. Learn more: https://github.com/11ty/eleventy-plugin-bundle
|
|
|
|
|
#}
|
2023-01-23 15:39:36 -05:00
|
|
|
|
|
2023-02-06 15:12:02 -05:00
|
|
|
|
{#- Add an arbitrary string to the bundle #}
|
|
|
|
|
{%- css %}* { box-sizing: border-box; }{% endcss %}
|
|
|
|
|
{#- Add the contents of a file to the bundle #}
|
2023-02-02 18:35:18 -05:00
|
|
|
|
{%- css %}{% include "public/css/index.css" %}{% endcss %}
|
2023-02-06 15:12:02 -05:00
|
|
|
|
{#- Or add from node_modules #}
|
|
|
|
|
{# {%- css %}{% include "node_modules/prismjs/themes/prism-okaidia.css" %}{% endcss %} #}
|
|
|
|
|
|
|
|
|
|
{#- Render the CSS bundle using Inlined CSS (for the fastest site performance in production) #}
|
2023-02-02 18:35:18 -05:00
|
|
|
|
<style>{% getBundle "css" %}</style>
|
2023-04-19 00:34:18 -04:00
|
|
|
|
{#- Renders the CSS bundle using a separate file, if you can't set CSP directive style-src: 'unsafe-inline' #}
|
|
|
|
|
{#- <link rel="stylesheet" href="{% getBundleFileUrl "css" %}"> #}
|
2024-07-16 16:45:08 -04:00
|
|
|
|
|
2024-08-29 16:28:33 -04:00
|
|
|
|
{%- js %}{% include "node_modules/@zachleat/heading-anchors/heading-anchors.js" %}{% endjs %}
|
2023-01-23 12:37:44 -05:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<a href="#skip" class="visually-hidden">Skip to main content</a>
|
|
|
|
|
|
|
|
|
|
<header>
|
|
|
|
|
<a href="/" class="home-link">{{ metadata.title }}</a>
|
|
|
|
|
|
|
|
|
|
{#- Read more about `eleventy-navigation` at https://www.11ty.dev/docs/plugins/navigation/ #}
|
|
|
|
|
<nav>
|
2023-01-23 18:26:15 -05:00
|
|
|
|
<h2 class="visually-hidden">Top level navigation menu</h2>
|
2023-01-23 12:37:44 -05:00
|
|
|
|
<ul class="nav">
|
|
|
|
|
{%- for entry in collections.all | eleventyNavigation %}
|
|
|
|
|
<li class="nav-item"><a href="{{ entry.url }}"{% if entry.url == page.url %} aria-current="page"{% endif %}>{{ entry.title }}</a></li>
|
|
|
|
|
{%- endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<main id="skip">
|
2024-07-16 16:45:08 -04:00
|
|
|
|
<heading-anchors>
|
|
|
|
|
{{ content | safe }}
|
|
|
|
|
</heading-anchors>
|
2023-01-23 12:37:44 -05:00
|
|
|
|
</main>
|
|
|
|
|
|
2024-04-24 18:31:41 -04:00
|
|
|
|
<footer>
|
|
|
|
|
<p><em>Built with <a href="https://www.11ty.dev/">{{ eleventy.generator }}</a></em></p>
|
|
|
|
|
</footer>
|
2023-01-23 12:37:44 -05:00
|
|
|
|
|
2024-03-07 09:09:42 -05:00
|
|
|
|
<!-- This page `{{ page.url | htmlBaseUrl }}` was built on {% currentBuildDate %} -->
|
2024-07-16 16:45:08 -04:00
|
|
|
|
<script type="module" src="{% getBundleFileUrl "js" %}"></script>
|
2023-01-23 12:37:44 -05:00
|
|
|
|
</body>
|
2018-01-19 01:32:20 -05:00
|
|
|
|
</html>
|