-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script lang="ts"> | ||
import TagExamples from "./TagExamples.svelte"; | ||
import { getTags } from "../utils/collection"; | ||
const tags: string[] = getTags(); | ||
</script> | ||
|
||
<div class="flex flex-col gap-8"> | ||
<div class="flex items-center gap-2"> | ||
<a href="/" class="btn btn-ghost px-3"> | ||
<span class="hidden">Get back</span> | ||
|
||
<i class="fa-solid fa-arrow-left-long text-2xl"></i> | ||
</a> | ||
|
||
<h1 class="text-3xl font-bold text-primary">All tags</h1> | ||
</div> | ||
|
||
<div class="flex flex-col gap-20"> | ||
{#each tags as tag} | ||
<TagExamples {tag} withArrow={false} smallTitle /> | ||
{/each} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
import Page from "../layout/Page.astro"; | ||
import Navbar from "../components/Navbar.svelte"; | ||
import Content from "../layout/Content.astro"; | ||
import AllTags from "../components/AllTags.svelte"; | ||
--- | ||
|
||
<Page title="All"> | ||
<Navbar /> | ||
|
||
<Content> | ||
<AllTags /> | ||
</Content> | ||
</Page> |