Spaces:
Sleeping
Sleeping
File size: 2,864 Bytes
a563878 730be3c a563878 8caf859 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<script>
// Apply saved theme as early as possible to avoid FOUC (flash of un-themed content)
(function(){
try {
var t = localStorage.getItem('theme');
if (t) document.documentElement.setAttribute('data-theme', t);
} catch(e) { /* ignore */ }
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Mariam AI{% endblock %}</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/animations.css') }}">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
{% block extra_head %}{% endblock %}
</head>
<body>
<header class="header glassmorphism">
<div class="container">
<div class="header-content">
<h1 class="text-gradient">Mariam AI</h1>
</div>
</div>
</header>
<nav class="navbar">
<div class="container">
<ul class="nav nav-links">
<li class="nav-item">
<a class="nav-link" href="#" title="Aller vers mariam-241" rel="noopener" aria-label="Aller vers mariam-241">
<!-- Home icon SVG -->
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" focusable="false">
<path d="M3 9.5L12 3l9 6.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1V9.5z" />
</svg>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('home') }}">Retour</a>
</li>
{% if request.endpoint and 'admin' in request.endpoint %}
<li class="nav-item">
<a class="nav-link" href="{{ url_for('admin_home') }}">Administration</a>
</li>
{% endif %}
</ul>
</div>
</nav>
<main class="container my-4">
{% block content %}{% endblock %}
</main>
<!-- Footer removed per user request -->
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="{{ url_for('static', filename='js/theme.js') }}"></script>
{% block extra_scripts %}{% endblock %}
</body>
</html> |