{#if items.length === 0}
{translations.gettingStarted.noItems}
{:else}
{#each items as item (item.id)}
(selectedGuideId = item.id)} >
{item.title}
{getDifficultyLabel(item.difficulty)}
{#if item.estimatedTime}
{item.estimatedTime}
{/if}
{/each}
{#if guide}
{guide.title}
{guide.description}
{#if guide.steps && guide.steps.length > 0}
{#each guide.steps as step, index}
{index + 1}
{step.title}
{step.content}
{/each}
{:else}
{@html guide.content}
{/if}
{/if}
{/if}