59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en" class="has-navbar-fixed-top">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <title>Dix heures</title>
 | 
						|
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.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') ?>
 | 
						|
    <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>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <nav class="navbar">
 | 
						|
        <div class="navbar-brand">
 | 
						|
            <a class="navbar-item" href="#">Dix heures</a>
 | 
						|
        </div>
 | 
						|
        <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>
 | 
						|
                <?php if (isset($is_logged_in) && $is_logged_in): ?>
 | 
						|
                    <a class="navbar-item" href="<?= site_url('playlist') ?>">Playlist</a>
 | 
						|
                    <a class="navbar-item" href="<?= site_url('connect/logout') ?>">Déconnexion</a>
 | 
						|
                <?php else: ?>
 | 
						|
                    <a class="navbar-item" href="<?= site_url('connect/login') ?>">Connexion</a>
 | 
						|
                <?php endif; ?>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </nav>
 | 
						|
    <main class="container">
 |