2024-05-29 10:29:40 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en" class="has-navbar-fixed-top">
|
2024-06-03 16:27:54 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>Dix heures</title>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
|
|
/>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<?= link_tag('assets/style.css') ?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main class='container'>
|
2024-05-29 12:29:53 +02:00
|
|
|
<nav>
|
2024-06-03 16:27:54 +02:00
|
|
|
<ul>
|
2024-06-04 15:45:15 +02:00
|
|
|
<h2><strong>Dix heures</strong></h2>
|
|
|
|
|
2024-06-03 16:27:54 +02:00
|
|
|
</ul>
|
2024-06-04 15:45:15 +02:00
|
|
|
|
2024-06-03 16:27:54 +02:00
|
|
|
<ul>
|
|
|
|
<li><?= anchor('albums', 'Albums'); ?></li>
|
|
|
|
<li><?= anchor('artistes', 'Artistes'); ?></li>
|
2024-06-04 17:29:01 +02:00
|
|
|
<li><?= anchor('music', 'Music'); ?></li>
|
2024-06-03 16:33:46 +02:00
|
|
|
<?php if (isset($is_logged_in) && $is_logged_in): ?>
|
2024-06-03 16:41:22 +02:00
|
|
|
<li><?= anchor('playlist', 'Playlist'); ?></li>
|
2024-06-03 16:27:54 +02:00
|
|
|
<li><?= anchor('connect/logout', 'Déconnexion'); ?></li>
|
|
|
|
<?php else: ?>
|
|
|
|
<li><?= anchor('connect/login', 'Connexion'); ?></li>
|
|
|
|
<?php endif; ?>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2024-06-03 16:51:37 +02:00
|
|
|
|
|
|
|
|