34 lines
1.5 KiB
HTML
34 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.0">
|
|
<title>{% block title %}Nino LABAT{% endblock %}</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=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='global.css') }}">
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<nav class="navbar">
|
|
<a class="nav-brand" href="https://git.ninolbt.com/Nono">M1n-0</a>
|
|
<ul class="nav-links">
|
|
<li><a href="/" {% if request.path == '/' %}class="active"{% endif %}>Accueil</a></li>
|
|
<li><a href="/about" {% if request.path == '/about' %}class="active"{% endif %}>À propos</a></li>
|
|
<li><a href="/experiences" {% if request.path == '/experiences' %}class="active"{% endif %}>Parcours</a></li>
|
|
<li><a href="/projects" {% if request.path == '/projects' %}class="active"{% endif %}>Projets</a></li>
|
|
<li><a href="/contact" {% if request.path == '/contact' %}class="active"{% endif %}>Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<p>Nino LABAT — <span>M1n-0</span> © 2025</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|