itsonus-blog/_includes/layouts/base.njk

69 lines
3.6 KiB
Plaintext
Raw Normal View History

2022-10-14 15:14:38 +00:00
<!doctype html>
<html lang="{{ lang or metadata.language }}">
2022-10-17 15:57:48 +00: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 }}">
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
{#- Uncomment this if youd like folks to know that you used Eleventy to build your site! #}
<meta name="generator" content="{{ eleventy.generator }}">
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
<link rel="stylesheet" href="/css/prism-theme.css">
<link rel="stylesheet" href="/css/prism-diff.css">
<link rel="stylesheet" href="/css/index.css">
<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 }}">
<link rel="icon" href="/img/favicon.svg">
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
{%- set alternateUrls = page.url | locale_links %}
{% if alternateUrls.length %}
2022-10-14 15:14:38 +00:00
<link rel="alternate" hreflang="{{ lang or metadata.language }}" href="{{ page.url | htmlBaseUrl(metadata.url) }}">
{%- for link in alternateUrls %}
2022-10-17 15:57:48 +00:00
<link rel="alternate" hreflang="{{ link.lang }}" href="{{ link.url | htmlBaseUrl(metadata.url) }}">
2022-10-14 15:14:38 +00:00
{%- endfor %}
2022-10-17 15:57:48 +00:00
{%- endif %}
</head>
<body class="container">
<header class="main-header">
<div>
<a class="main-header-logo" href="/"><img src="/img/logo.svg" alt="{{ metadata.title }}" width="165" height="33">Blog</a>
{#- Read more about `eleventy-navigation` at https://www.11ty.dev/docs/plugins/navigation/ #}
{# <nav class="main-menu">#}
{# <ul class="nav">#}
{# {%- for entry in collections.all | eleventyNavigation %}#}
{# <li class="nav-item{% if entry.url == page.url %} nav-item-active{% endif %}"><a#}
{# href="{{ entry.url }}">{{ entry.title | i18n }}</a></li>#}
{# {%- endfor %}#}
{# </ul>#}
{# </nav>#}
</div>
</header>
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
<main>
<div class="main-content">
2022-10-14 15:14:38 +00:00
{{ content | safe }}
2022-10-17 15:57:48 +00:00
</div>
<nav class="right-side">
{% include "tagslist.njk" %}
{% include "other_links.njk" %}
</nav>
</main>
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
<footer class="main-footer">
<div class="footer-contact">
<div>
<p class="footer-contact-title">IT's on us</p>
<p>Copyright © 2022</p>
</div>
<div><p><a rel="noopener" href="https://www.linkedin.com/company/itsonus" target="_blank"><svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" aria-label="Linkedin"><title>Accéder à la page LinkedIn de IT's on us</title><path d="M12.6041 20.6838H9.74213V12.0046H12.6041V20.6838ZM11.1716 10.8207C10.2566 10.8207 9.51416 10.1068 9.51416 9.245C9.51416 8.38317 10.2566 7.68384 11.1716 7.68384C12.0865 7.68384 12.8289 8.38317 12.8289 9.245C12.8289 10.1068 12.0865 10.8207 11.1716 10.8207ZM23.3155 20.6838H20.4597V16.4588C20.4597 15.4519 20.4382 14.1606 18.9718 14.1606C17.4838 14.1606 17.2559 15.2546 17.2559 16.3863V20.6838H14.397V12.0046H17.1419V13.1885H17.1819C17.5639 12.5066 18.4974 11.787 19.8898 11.787C22.7856 11.787 23.3186 13.5832 23.3186 15.9162V20.6838H23.3155Z" fill="white"></path><path d="M30.2071 16.1838C30.2071 8.1624 23.799 1.68384 15.9236 1.68384C8.04829 1.68384 1.64014 8.1624 1.64014 16.1838C1.64014 24.2053 8.04829 30.6838 15.9236 30.6838C23.799 30.6838 30.2071 24.2053 30.2071 16.1838Z" stroke="white" stroke-width="2"></path></svg></a></p></div>
</div>
<div class="footer-center">
Ceci est le blog du collectif IT's on us. Visitez notre <a href="https://www.itsonus.fr">site</a>.
</div>
</footer>
2022-10-14 15:14:38 +00:00
2022-10-17 15:57:48 +00:00
{# <!-- Current page: {{ page.url | htmlBaseUrl }} --> #}
</body>
2022-10-14 15:14:38 +00:00
</html>