From 9955a898b22893c8e4af6e378f43d036fce1fe25 Mon Sep 17 00:00:00 2001 From: June Date: Tue, 3 Feb 2026 15:48:50 +1300 Subject: [PATCH] Removed current implementation of calendar, to be expanded upon in a bit --- src/lib/components/entrySummaryView.svelte | 4 +-- src/routes/+page.svelte | 38 ++++++++++++---------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/src/lib/components/entrySummaryView.svelte b/src/lib/components/entrySummaryView.svelte index 2502eac..578878c 100644 --- a/src/lib/components/entrySummaryView.svelte +++ b/src/lib/components/entrySummaryView.svelte @@ -8,14 +8,14 @@ const formattedDate = formatDate(entry.date); -
  • +
  • {formattedDate}

    {@html generateHTML(entry.content, [StarterKit])}
    diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 84a8945..c2cb0f6 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -17,23 +17,25 @@ } -
    -
    - -
      - {#each data.all as entry} - await selectEntry(entry.id)} {entry} /> - {/each} -
    -
    +
    + +
    + {#if selectedEntry} + + {:else} + + {/if} +
    + +
    +
      + {#each data.all as entry} + await selectEntry(entry.id)} {entry} /> + {/each} +
    +
    + -
    \ No newline at end of file