aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-05 00:13:49 -0800
committerFuwn <[email protected]>2024-01-05 00:13:49 -0800
commit86ab23f27f5f7a9e92bb3ce068ff36b4dd630175 (patch)
treec072c721ab6688a5a09c189eecf91a8587fe4855 /src
parentrefactor(layout): remove hover header (diff)
downloaddue.moe-86ab23f27f5f7a9e92bb3ce068ff36b4dd630175.tar.xz
due.moe-86ab23f27f5f7a9e92bb3ce068ff36b4dd630175.zip
refactor(layout): move navigation items
Diffstat (limited to 'src')
-rw-r--r--src/routes/+layout.svelte13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index 5653f44c..7126641a 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -38,14 +38,17 @@
<div id="header" class="card card-centered">
<div>
<a href="/" class="header-item">Home</a><a href="/completed" class="header-item">Completed</a>
- <a href="/schedule" class="header-item">Anime Schedule</a>
- <a href="/updates" class="header-item">Manga & WN Updates</a>
- <a href="/tools" class="header-item">Tools</a>{#if data.user}
- <a href={`/user/${currentUserIdentity.name}`} class="header-item">Profile</a>
- {/if} <a href="/settings" class="header-item">Settings</a>
+ <a href="/schedule" class="header-item">Subtitle Schedule</a>
+ <a href="/updates" class="header-item">New Releases</a>
+ <a href="/tools" class="header-item">Tools</a>
+ <a href="/settings" class="header-item">Settings</a>
<span style="opacity: 50%; font-weight: bold;">|</span>
+ {#if data.user}
+ <a href={`/user/${currentUserIdentity.name}`} class="header-item">Profile</a>
+ {/if}
+
{#if data.user === undefined}
<a
class="header-item"