2024-05-21 15:05:29 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en" class="has-navbar-fixed-top">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>MUSIC APP</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">
|
|
|
|
<?php=link_tag('assets/style.css')?>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main class='container'>
|
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><strong>Music APP</strong></li>
|
|
|
|
</ul>
|
2024-05-28 14:36:30 +02:00
|
|
|
<input type="search" id="site-search" name="q"/>
|
|
|
|
<input type="submit" value="Rechercher" \>
|
2024-05-21 15:05:29 +02:00
|
|
|
<ul>
|
|
|
|
<li><?=anchor('albums','Albums');?></li>
|
|
|
|
<li><?=anchor('artistes','Artistes');?></li>
|
|
|
|
<li><?=anchor('playlist','Playlist');?></li>
|
2024-05-28 14:36:30 +02:00
|
|
|
|
2024-05-21 15:05:29 +02:00
|
|
|
</ul>
|
|
|
|
</nav>
|