fix: terminal promtp

This commit is contained in:
Barrett Ruth 2025-10-08 15:47:17 -04:00
parent cefde24774
commit 4076af3592
6 changed files with 212 additions and 246 deletions

View file

@ -10,15 +10,23 @@ gists.sort((a, b) => a.slug.localeCompare(b.slug));
<BaseLayout title={title}>
<slot name="head" slot="head">
<link rel="stylesheet" href="/styles/index.css" />
<script type="module" src="/scripts/index.js"></script>
</slot>
<div class="content">
<ul class="topics">
{gists.map((gist) => (
<li class="topic">
<a href={`/gist/${gist.slug}.html`}>{gist.data.title || gist.slug}</a>
<a
href={`/gist/${gist.slug}.html`}
data-topic="gist"
data-gist={gist.slug}
>
{gist.data.title || gist.slug}
</a>
</li>
))}
</ul>
</div>
</BaseLayout>