summaryrefslogtreecommitdiff
path: root/src/emotes/multiple_page.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/emotes/multiple_page.php')
-rw-r--r--src/emotes/multiple_page.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/emotes/multiple_page.php b/src/emotes/multiple_page.php
deleted file mode 100644
index 25c4c9c..0000000
--- a/src/emotes/multiple_page.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<html>
-
-<head>
- <title>AlrightTV</title>
- <link rel="stylesheet" href="/static/style.css">
-</head>
-
-<body>
- <div class="container">
- <div class="wrapper">
- <?php html_navigation_bar(); ?>
- <main class="page">
- <section class="sidebar">
- <?php html_navigation_search(); ?>
- </section>
- <section class="content">
- <section class="box">
- <div class="box navtab">
- <?php echo isset($emotes) ? "Emotes" : "Emote" ?>
- </div>
- <div class="box content items">
- <?php
- if (isset($emotes)) {
- foreach ($emotes as $e) {
- echo "<a class=\"box emote\" href=\"/emotes/" . $e->get_id() . "\">";
-
- if ($e->is_added_by_user()) {
- echo '<img src="/static/img/icons/yes.png" class="emote-check" />';
- }
-
- echo "<img src=\"/static/userdata/emotes/" . $e->get_id() . "/2x." . $e->get_ext() . "\" alt=\"" . $e->get_code() . "\"/>";
- echo "<p>" . $e->get_code() . "</p>";
- echo "</a>";
- }
- } else {
- // info
- echo "";
- }
- ?>
- </div>
- </section>
- </section>
- </main>
- </div>
- </div>
-</body>
-
-</html> \ No newline at end of file