<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Geekbrain.io{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', path='css/style.css') }}">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<header class="header">
<div class="container header-content">
<img src="{{ url_for('static', path='assets/images/Geekbrain-io.png') }}" alt="Geekbrain.io" class="logo">
<nav class="nav">
<a href="{{ url_for('home') }}">Accueil</a>
<a href="{{ url_for('about') }}">À propos</a>
<a href="{{ url_for('projects') }}">Projets</a>
<a href="{{ url_for('contact') }}">Contact</a>
</nav>
</div>
</header>
<main class="main">
{% block content %}{% endblock %}
</main>
<footer class="footer">
<div class="container">
<p>© {% now "Y" %} Geekbrain.io - <a href="https://www.linkedin.com/in/eric-chicoine-2440893b7" target="_blank">LinkedIn</a></p>
</div>
</footer>
<script src="{{ url_for('static', path='js/main.js') }}"></script>
{% block scripts %}{% endblock %}
</body>
</html>