37 lines
1.5 KiB
HTML
37 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>Archive de Liens</title>
|
|
<link rel="stylesheet" href='/static/styles/styles.css'>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
|
|
<link rel="icon" type="image/x-icon" href='/static/favicon.ico'>
|
|
<script type="module" src='/static/scripts/main.js'></script>
|
|
<script type="module" src='/static/scripts/router.js'></script>
|
|
<script type="module" src='/static/scripts/navigation.js'></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<div id="tabs-icon">
|
|
<div id="tabs-list">
|
|
<button type="button" id="home-button">ACCUEIL <i class="bi bi-house-door"></i></button>
|
|
<button type="button" id="sources-button">SOURCES <i class="bi bi-link-45deg"></i></button>
|
|
<button type="button" id="suggest-button">SUGGÉRER <i class="bi bi-plus-circle"></i></button>
|
|
<button type="button" id="search-button">RECHERCHE <i class="bi bi-search"></i></button>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main id="content">
|
|
<!-- Le contenu principal sera injecté ici par le routeur -->
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 Archive de Liens. Tous droits réservés.</p>
|
|
<a href="" id="download-archive">Télécharger l'archive complète</a>
|
|
</footer>
|
|
</body>
|
|
</html> |