59 lines
2.0 KiB
PHP
Raw Normal View History

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>
2024-06-05 08:20:53 +02:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">
2024-06-03 16:27:54 +02:00
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<?= link_tag('assets/style.css') ?>
2024-06-05 08:37:40 +02:00
<style>
body {
background-color: #121212;
color: #FFFFFF;
}
.navbar {
background-color: #000000;
}
.navbar-item {
color: white;
}
.hero {
background-color: #282828;
color: white;
}
.card {
background-color: #1e1e1e;
color: white;
}
.button, .input, .select {
background-color: #282828;
color: white;
border-color: #282828;
}
.button:hover, .input:hover, .select:hover {
background-color: #3b3b3b;
border-color: #3b3b3b;
}
</style>
2024-06-03 16:27:54 +02:00
</head>
<body>
2024-06-05 08:37:40 +02:00
<nav class="navbar">
2024-06-05 08:26:19 +02:00
<div class="navbar-brand">
2024-06-05 08:37:40 +02:00
<a class="navbar-item" href="#">Dix heures</a>
2024-06-05 08:26:19 +02:00
</div>
2024-06-05 08:37:40 +02:00
<div class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="<?= site_url('albums') ?>">Albums</a>
<a class="navbar-item" href="<?= site_url('artistes') ?>">Artistes</a>
<a class="navbar-item" href="<?= site_url('music') ?>">Music</a>
2024-06-05 08:26:19 +02:00
<?php if (isset($is_logged_in) && $is_logged_in): ?>
2024-06-05 08:37:40 +02:00
<a class="navbar-item" href="<?= site_url('playlist') ?>">Playlist</a>
<a class="navbar-item" href="<?= site_url('connect/logout') ?>">Déconnexion</a>
2024-06-05 08:26:19 +02:00
<?php else: ?>
2024-06-05 08:37:40 +02:00
<a class="navbar-item" href="<?= site_url('connect/login') ?>">Connexion</a>
2024-06-05 08:26:19 +02:00
<?php endif; ?>
</div>
</div>
</nav>
2024-06-05 08:37:40 +02:00
<main class="container">