diff options
Diffstat (limited to 'tags.php')
-rw-r--r-- | tags.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tags.php b/tags.php new file mode 100644 index 0000000..d1c4282 --- /dev/null +++ b/tags.php @@ -0,0 +1,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>
\ No newline at end of file |