2018-01-16 22:08:47 -05:00
|
|
|
|
<!doctype html>
|
2022-07-15 13:11:54 -04:00
|
|
|
|
<html lang="{{ lang or metadata.language }}">
|
2019-01-10 23:20:14 -05:00
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-06-28 10:20:44 -04:00
|
|
|
|
<title>{{ title or metadata.title }}</title>
|
|
|
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
2022-06-30 11:21:08 -04:00
|
|
|
|
|
|
|
|
|
{#- Uncomment this if you’d like folks to know that you used Eleventy to build your site! #}
|
|
|
|
|
{#- <meta name="generator" content="{{ eleventy.generator }}"> #}
|
2022-04-18 14:55:31 -04:00
|
|
|
|
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<link rel="stylesheet" href="/css/index.css">
|
2023-01-23 09:17:38 -05:00
|
|
|
|
<style>
|
|
|
|
|
{{ page.url | webcGetCss | safe }}
|
|
|
|
|
</style>
|
|
|
|
|
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<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 }}">
|
2022-07-15 13:11:54 -04:00
|
|
|
|
|
2022-07-15 16:15:02 -04:00
|
|
|
|
{%- set alternateUrls = page.url | locale_links %}
|
|
|
|
|
{% if alternateUrls.length %}
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<link rel="alternate" hreflang="{{ lang or metadata.language }}" href="{{ page.url | htmlBaseUrl(metadata.url) }}">
|
2022-07-15 16:15:02 -04:00
|
|
|
|
{%- for link in alternateUrls %}
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<link rel="alternate" hreflang="{{ link.lang }}" href="{{ link.url | htmlBaseUrl(metadata.url) }}">
|
2022-07-15 16:15:02 -04:00
|
|
|
|
{%- endfor %}
|
|
|
|
|
{%- endif %}
|
2019-01-10 23:20:14 -05:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<header>
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<h1 class="home"><a href="/">{{ metadata.title }}</a></h1>
|
2019-11-11 17:22:08 -05:00
|
|
|
|
|
2020-01-02 21:51:47 -05:00
|
|
|
|
{#- Read more about `eleventy-navigation` at https://www.11ty.dev/docs/plugins/navigation/ #}
|
|
|
|
|
<ul class="nav">
|
|
|
|
|
{%- for entry in collections.all | eleventyNavigation %}
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<li class="nav-item{% if entry.url == page.url %} nav-item-active{% endif %}"><a href="{{ entry.url }}">{{ entry.title | i18n }}</a></li>
|
2020-01-02 21:51:47 -05:00
|
|
|
|
{%- endfor %}
|
|
|
|
|
</ul>
|
2019-01-10 23:20:14 -05:00
|
|
|
|
</header>
|
2018-01-16 22:08:47 -05:00
|
|
|
|
|
2019-01-10 23:20:14 -05:00
|
|
|
|
<main{% if templateClass %} class="{{ templateClass }}"{% endif %}>
|
|
|
|
|
{{ content | safe }}
|
|
|
|
|
</main>
|
2018-01-16 22:08:47 -05:00
|
|
|
|
|
2019-01-10 23:20:14 -05:00
|
|
|
|
<footer></footer>
|
2018-01-22 09:17:48 -05:00
|
|
|
|
|
2022-08-19 12:05:22 -04:00
|
|
|
|
<!-- Current page: {{ page.url | htmlBaseUrl }} -->
|
2019-01-10 23:20:14 -05:00
|
|
|
|
</body>
|
2018-01-19 01:32:20 -05:00
|
|
|
|
</html>
|