{#if loading}

Looking at today…

{:else}

{#if completedToday.length === 0} A quiet day. {:else if completedToday.length === 1} You finished one thing today. {:else} You finished {completedToday.length} today. {/if}

{#if completedToday.length > 0}
    {#each completedToday as task (task.id)}
  • {task.text}
  • {/each}
{/if}

Open loops

{#if openLoops.length === 0}

Nothing in the list.

{:else}

These are still here. Naming them silences the loop, you don't have to act now.

    {#each openLoops.slice(0, 12) as task (task.id)}
  • {task.text}
  • {/each} {#if openLoops.length > 12}
  • …and {openLoops.length - 12} more.
  • {/if}
{/if}

Before you close

  1. Take a breath. Stand up. Stretch for ten seconds.
  2. Pick a closing line. Say it out loud when you're ready, something like "I'm done for today."
  3. Let it rest. Tomorrow's list will be here. Work done for today.
{/if}