devops/site/templates/base.html
Azmog 8154786e9b Add initial documentation for create_repo.sh and site structure
- Created example Markdown document with basic formatting and code block.
- Added configuration file for site settings including base URL and author.
- Introduced index page with project overview and links to documentation.
- Implemented detailed documentation for create_repo.sh, including usage, prerequisites, and response codes.
- Added custom 404 error page for better user experience.
- Developed HTML structure for create_repo.sh documentation with styling and layout.
- Created main index page with project description and links to relevant resources.
- Included robots.txt and sitemap.xml for search engine optimization.
- Established CSS styles for consistent design across the site.
- Set up base HTML template for consistent layout and navigation.
- Created templates for index and page rendering to streamline content management.
2026-06-15 17:01:11 +02:00

39 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>