summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/BaseHead.astro2
-rw-r--r--src/components/note/Note.astro2
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>
) : (