70 lines
2.8 KiB
Text
70 lines
2.8 KiB
Text
<!doctype html>
|
||
<html lang="{{ metadata.language }}">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Agnes the Alien</title>
|
||
<meta name="description" content="{{ description or metadata.description }}">
|
||
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
||
|
||
{#- Uncomment this if you’d like folks to know that you used Eleventy to build your site! #}
|
||
{#- <meta name="generator" content="{{ eleventy.generator }}"> #}
|
||
|
||
{#-
|
||
Plain-text bundles are provided via the `eleventy-plugin-bundle` plugin:
|
||
1. CSS:
|
||
* Add to a per-page bundle using `{% css %}{% endcss %}`
|
||
* Retrieve bundle content using `{% getBundle "css" %}` or `{% getBundleFileUrl "css" %}`
|
||
2. Or for JavaScript:
|
||
* Add to a per-page bundle using `{% js %}{% endjs %}`
|
||
* Retrieve via `{% get {#- Add the contents of a file to the bundle #}
|
||
<style>#{% include "css/index.css" %}</style>
|
||
|
||
{#- Or you can add from node_modules #}
|
||
{#<style>{% include "node_modules/something.css" %}</style> #}
|
||
<link rel="stylesheet" href="blog.css">
|
||
|
||
{#- Render the CSS bundle using inlined CSS (for the fastest site performance in producti
|
||
{#- 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" %}"> #}
|
||
<script src="/themeswitcherblog.js"></script>
|
||
{#- Add the heading-anchors web component to the JavaScript bundle #}
|
||
<script type="module">{% include "node_modules/@zachleat/heading-anchors/heading-anchors.js" %}</script>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
{% include "partials/header.njk" %}
|
||
|
||
<a href="#main" id="skip-link" class="visually-hidden">Skip to main content</a>
|
||
|
||
<header>
|
||
<a href="/" class="home-link">Agnes the Alien</a>
|
||
|
||
{#- Read more about `eleventy-navigation` at https://www.11ty.dev/docs/plugins/navigation/ #}
|
||
<nav>
|
||
<h2 class="visually-hidden">Top level navigation menu</h2>
|
||
<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="main"><br><br>tools: <a href="#" onclick="setTheme('/bigger.css')">default font size</a> | <a href="#" onclick="setTheme('/evenbigger.css')">font 1x larger</a>
|
||
| <a href="#" onclick="setTheme('/largest.css')">font 2x larger</a> <heading-anchors>
|
||
{{ content | safe }}
|
||
</heading-anchors>
|
||
</main> </div>
|
||
<footer>
|
||
<p>
|
||
<em>Built with <a href="https://www.11ty.dev/">{{ eleventy.generator }}</a></em>
|
||
</p>
|
||
</footer>
|
||
|
||
<!-- This page `{{ page.url }}` was built on {% currentBuildDate %} -->
|
||
<script type="module" src="{% getBundleFileUrl "js" %}"></script>
|
||
|
||
|
||
</body>
|
||
</html>
|