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 #}
|
|
|
|
|
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
|
|
|
|
<link rel="alternate" href="/feed/feed.json" type="application/json" title="{{ metadata.title }}">
|
|
|
|
|
|
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-01-23 15:39:36 -05:00
|
|
|
|
{#-
|
|
|
|
|
Choices for CSS:
|
|
|
|
|
|
|
|
|
|
1. External files (best with local dev server live reload)
|
|
|
|
|
#}
|
2023-01-23 12:37:44 -05:00
|
|
|
|
<link rel="stylesheet" href="/css/index.css">
|
2023-01-23 15:39:36 -05:00
|
|
|
|
<link rel="stylesheet" href="/css/prism-okaidia.css">{# addPassthroughCopy file #}
|
2023-01-23 12:37:44 -05:00
|
|
|
|
<link rel="stylesheet" href="/css/prism-diff.css">
|
|
|
|
|
|
2023-01-23 15:39:36 -05:00
|
|
|
|
{#-
|
|
|
|
|
2. Inlined (speediest in production)
|
|
|
|
|
<style>
|
|
|
|
|
{% include "public/css/index.css" %}
|
|
|
|
|
{% include "node_modules/prismjs/themes/prism-okaidia.css" %}
|
|
|
|
|
{% include "public/css/prism-diff.css" %}
|
|
|
|
|
…
|
|
|
|
|
</style>
|
|
|
|
|
3. Concatenate CSS to one file (slower than 2 but faster than 1):
|
|
|
|
|
https://www.11ty.dev/docs/quicktips/concatenate/
|
|
|
|
|
4. Use a bundler
|
|
|
|
|
e.g. Vite https://www.11ty.dev/docs/server-vite/
|
|
|
|
|
Or search for additional community plugins for esbuild, rollup, webpack, etc.
|
|
|
|
|
#}
|
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>
|
|
|
|
|
<ul class="nav">
|
|
|
|
|
<h2 class="visually-hidden">Top level navigation menu</h2>
|
|
|
|
|
{%- 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">
|
|
|
|
|
{{ content | safe }}
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<footer></footer>
|
|
|
|
|
|
|
|
|
|
<!-- Current page: {{ page.url | htmlBaseUrl }} -->
|
|
|
|
|
</body>
|
2018-01-19 01:32:20 -05:00
|
|
|
|
</html>
|