You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ get_url(path='style.css') }}">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="topbar">
|
|
<div class="topbar-inner">
|
|
<a class="brand" href="{{ config.base_url }}">
|
|
<span class="logo">⚙</span> {{ config.title }}
|
|
</a>
|
|
<nav class="nav-links">
|
|
<a href="{{ config.base_url }}">Accueil</a>
|
|
<a href="{{ get_url(path='@/create-repo.md') }}">create_repo.sh</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
|
|
{% block body %}
|
|
<main class="wrap">
|
|
{% block content %}{% endblock content %}
|
|
</main>
|
|
{% endblock body %}
|
|
|
|
<footer>
|
|
Généré avec <strong>Zola</strong> · {{ config.extra.author }}
|
|
</footer>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
|
|
<script>hljs.highlightAll();</script>
|
|
</body>
|
|
</html>
|