summaryrefslogtreecommitdiff
path: root/tags.php
blob: d1c4282d485a5560dd282c0c81fba351c608467f (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
<html>

<head>
<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">
        <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>