xmitter-11ty/_includes/layouts/base.njk

68 lines
2.3 KiB
Plaintext
Raw Normal View History

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 youd 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
2023-01-24 12:16:03 -05:00
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="/css/message-box.css">
2023-01-24 12:16:03 -05:00
<link rel="stylesheet" href="/css/prism-okaidia.css">
<link rel="stylesheet" href="/css/prism-diff.css">
2023-01-23 15:39:36 -05:00
2. Inlined (speediest in production)
2023-01-24 12:16:03 -05:00
#}
2023-01-23 15:39:36 -05:00
<style>
{% include "public/css/index.css" %}
{% include "public/css/message-box.css" %}
2023-01-23 15:39:36 -05:00
{% include "node_modules/prismjs/themes/prism-okaidia.css" %}
{% include "public/css/prism-diff.css" %}
</style>
2023-01-24 12:16:03 -05:00
{#
2023-01-23 15:39:36 -05:00
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>
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">
{{ content | safe }}
</main>
<footer></footer>
<!-- Current page: {{ page.url | htmlBaseUrl }} -->
</body>
2018-01-19 01:32:20 -05:00
</html>