2023-04-23 11:20:57 +02:00
|
|
|
|
<!doctype html>
|
2024-05-24 17:12:23 +02:00
|
|
|
|
<html lang="{{ metadata.language }}">
|
|
|
|
|
<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 }}">
|
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.png">
|
2023-04-23 11:20:57 +02:00
|
|
|
|
|
2024-05-24 17:12:23 +02: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-04-23 11:20:57 +02:00
|
|
|
|
|
2024-05-24 17:12:23 +02:00
|
|
|
|
{%- css %}{% include "public/css/index.css" %}{% endcss %}
|
|
|
|
|
<style>{% getBundle "css" %}</style>
|
2023-04-23 11:20:57 +02:00
|
|
|
|
|
2024-05-24 17:40:46 +02:00
|
|
|
|
<style>
|
|
|
|
|
:root {
|
|
|
|
|
--color-accent: {{ config.accentColor }};
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
2024-05-24 17:12:23 +02:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2023-04-23 11:20:57 +02:00
|
|
|
|
<main>
|
2024-05-24 17:12:23 +02:00
|
|
|
|
<h1>{{ metadata.title }}</h1>
|
2023-04-23 11:20:57 +02:00
|
|
|
|
<form method="GET" action="https://duckduckgo.com/">
|
|
|
|
|
<input name="q" title="Recherchez sur DuckDuckGo…" placeholder="Recherchez sur DuckDuckGo…" />
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div class="featured">
|
2024-05-24 17:24:10 +02:00
|
|
|
|
{%- for site in config.featuredSites -%}
|
2024-05-24 17:40:46 +02:00
|
|
|
|
<a href="{{ site.url }}" rel="noopener"><span class="emoji" aria-hidden=true>{{site.emoji}}</span> {{ site.nom }}</a>
|
2024-05-24 17:24:10 +02:00
|
|
|
|
{%- endfor -%}
|
2023-04-23 11:20:57 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="cols">
|
2024-05-24 17:24:10 +02:00
|
|
|
|
{%- for siteBlock in config.siteBlocks -%}
|
|
|
|
|
<div class="linklist">
|
|
|
|
|
<h2><i class="fa fa-comments-o"></i> {{ siteBlock.nom }}</h2>
|
|
|
|
|
<ul>
|
|
|
|
|
{%- for site in siteBlock.sites -%}
|
2024-05-24 17:40:46 +02:00
|
|
|
|
<li><a href="{{ site.url }}" rel="noopener"><span class="emoji" aria-hidden=true>{{site.emoji}}</span> {{ site.nom }}</a></li>
|
2024-05-24 17:24:10 +02:00
|
|
|
|
{%- endfor -%}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
{%- endfor -%}
|
2023-04-23 11:20:57 +02:00
|
|
|
|
</div>
|
|
|
|
|
</main>
|
2024-05-24 20:06:18 +02:00
|
|
|
|
<div class="mascotte">
|
|
|
|
|
<div>
|
|
|
|
|
{% image "../public/img/mascotte.png", config.mascotte.alt %}
|
|
|
|
|
<div class="mascotte-message">{{ config.mascotte.message }}</div>
|
|
|
|
|
<div>
|
|
|
|
|
</div>
|
2023-04-23 11:20:57 +02:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|