Skip to content

Commit

Permalink
test: #1231; layout reorder;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed May 2, 2023
1 parent 866a43d commit 109e2bf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
import type { Cache_Single_Lang_Footer_Translation_Response } from '$lib/models/_main_/footer/types';
import type { Cache_Single_Lang_Header_Translation_Response } from '$lib/models/_main_/navbar/types';
import EmailSubscribe from '$lib/components/_Email_subscribe.svelte';
import OfflineAlert from '$lib/components/_Offline_alert.svelte';
import PlatformAlert from '$lib/components/_Platform_alert.svelte';
import SplashScreen from '$lib/components/_Splash_screen.svelte';
import Footer from '$lib/components/_main_/footer/_Footer.svelte';
import Header from '$lib/components/_main_/header/Header.svelte';
import Navbar from '$lib/components/page/profile/Navbar.svelte';
Expand Down Expand Up @@ -94,13 +97,14 @@
COMPONENT HTML
=================== -->

<SplashScreen />

{#if offlineMode}
<OfflineAlert />
{/if}

<!-- <PlatformAlert {HEADER_TRANSLATION_DATA} /> -->
<!-- <SplashScreen /> -->
<!-- <EmailSubscribe /> -->
<PlatformAlert {HEADER_TRANSLATION_DATA} />
<EmailSubscribe />

{#if !VALID_PROFILE_PAGE_URL.includes($page?.url?.pathname)}
<Header {HEADER_TRANSLATION_DATA} />
Expand Down

0 comments on commit 109e2bf

Please sign in to comment.