aboutsummaryrefslogtreecommitdiff
path: root/app/components/forum_list
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2021-03-09 22:43:12 +0100
committerRuben Beltran del Rio <ruben@unlimited.pizza>2021-03-09 22:43:12 +0100
commitbd8e98d7e24c4dbaee7db6ec7955f7c2f6d396a6 (patch)
treee5f0dcbc14d3009c17e5f562404fe19f6aceab73 /app/components/forum_list
parent862a5f9cdbbda522c608ea63c1e296e81f44de10 (diff)
Update to SvelteKit
Diffstat (limited to 'app/components/forum_list')
-rw-r--r--app/components/forum_list/forum_list.svelte52
1 files changed, 0 insertions, 52 deletions
diff --git a/app/components/forum_list/forum_list.svelte b/app/components/forum_list/forum_list.svelte
deleted file mode 100644
index 5ce4dc1..0000000
--- a/app/components/forum_list/forum_list.svelte
+++ /dev/null
@@ -1,52 +0,0 @@
-<script>
- import { _ } from 'svelte-i18n';
- import { forums } from '../../stores/forums.js';
- import ErrorBlock from '../error_block/error_block.svelte';
-</script>
-
-<nav title="List of Forums">
- {#if !$forums.length}
- <ErrorBlock message={$_('forum_list.error.unavailable')} />
- {/if}
- <ul>
- {#each $forums as forum}
- <li>
- <a href="/f/{forum.id}">
- <span aria-hidden="true" class="navigation-glyph {forum.glyph}">{forum.glyph}</span>
- <span class="navigation-label">{$_(forum.label)}</span>
- </a>
- </li>
- {/each}
- </ul>
-</nav>
-
-<style>
- nav {
- grid-column: col-start 1;
- grid-row: 2;
- border-right: 1px solid black;
- }
-
- ul {
- padding: 0;
- }
-
- li {
- display: block;
- text-align: left;
- margin-bottom: 20px;
- }
-
- .navigation-glyph {
- font-size: 1.5rem;
- display: block;
- }
-
- .☽ {
- font-size: 2rem;
- }
-
- a {
- text-decoration: none;
- }
-</style>