diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-03 13:09:53 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-03 13:09:53 +0300 |
| commit | 1e5f5a953588cefa75396454c9aed0a79552db14 (patch) | |
| tree | 733c5bcf71f009acc0bacfbc2269404330c82b5d /src/components | |
| parent | 0bedb68753e7202326383fd10f7af563d7fbc24a (diff) | |
Migrate notes to micro
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/BaseHead.astro | 2 | ||||
| -rw-r--r-- | src/components/note/Note.astro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index 7ff861f..ceb55ea 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -71,7 +71,7 @@ const socialImageURL = new URL(ogImage ? ogImage : "/social-card.png", Astro.url {/* RSS auto-discovery */} <link href="/rss.xml" title="Blog" rel="alternate" type="application/rss+xml" /> -<link href="/notes/rss.xml" title="Notes" rel="alternate" type="application/rss+xml" /> +<link href="/micro/rss.xml" title="Micro" rel="alternate" type="application/rss+xml" /> {/* Webmentions */} { diff --git a/src/components/note/Note.astro b/src/components/note/Note.astro index cff3414..d96cb6d 100644 --- a/src/components/note/Note.astro +++ b/src/components/note/Note.astro @@ -21,7 +21,7 @@ const { Content } = await render(note); <Tag class="title" class:list={{ "text-base": isPreview }}> { isPreview ? ( - <a class="cactus-link" href={`/notes/${note.id}/`}> + <a class="cactus-link" href={`/micro/${note.id}/`}> {note.data.title} </a> ) : ( |
