summaryrefslogtreecommitdiff
path: root/tags.php
blob: 81bed913b8cc2db9a046f14cfe176d01a1498015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>

<head>
<title>Dachai's Music</title>
<link rel="icon" type="image/x-icon" href="./res/dachai.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, target-densityDpi=device-dpi">
<link rel="stylesheet" href="./res/styles.css">
<script src="./res/main.js"></script>
</head>

<body> 
    <div id="container">
    <?php include_once('header.php');?>
    <?php include_once('titlebar.php');?>

        <div style="padding: 10px;">
            <label>Tags:</label> <br/> 
            <div class="tags_container">
                <?php 
                    require_once 'music.php';
                    require_once 'template.php';
                    $tags = fetch_all_tags() ;
                    foreach($tags as $tag){
                        html_tag($tag);
                    }
                ?>
            </div>
        </div>
    </div>
</body>
</html>