Skip to content

Commit

Permalink
refactor: group webapp routes to allow opting out of header/footer la…
Browse files Browse the repository at this point in the history
…yout

- also opt stream embed out of layout
  • Loading branch information
CactusPuppy committed Feb 28, 2024
1 parent bfa6496 commit fc27502
Show file tree
Hide file tree
Showing 23 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
});
}
import "../app.css";
import "../../app.css";
onMount(() => {
const {
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/routes/+page.svelte → src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
import { FontAwesomeIcon } from "fontawesome-svelte";
import { faPlus } from "@fortawesome/free-solid-svg-icons";
import { dates } from "../stores/dates";
import EventCard from "./_event_card.svelte";
import { dates } from "../../stores/dates";
import EventCard from "../_event_card.svelte";
import { eventEffectiveDate } from "$lib/utils/event_helpers";
import { fade } from "svelte/transition";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import Embed from "./_embed.svelte";
import "../../../../../../app.css";
export let data: PageData;
let event: CountdownDate;
$: event = data.event;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit fc27502

Please sign in to comment.