Fix RSS link. (#41)

This commit is contained in:
Alessandro Jean 2023-09-09 20:26:19 -03:00 committed by GitHub
parent ffd5cb32f4
commit 0af6607c09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ function generateMeta(context: TransformContext, hostname: string) {
rel: "alternate",
type: "application/rss+xml",
title: "RSS feed for the news archive",
href: `${hostname}/feed.xml`,
href: `${hostname}/feed.rss`,
},
])
head.push([

View File

@ -3,7 +3,7 @@ import { IconRssBox } from "@iconify-prerendered/vue-mdi"
</script>
<template>
<a href="/feed.xml" class="rss" title="RSS feed for the news archive">
<a href="/feed.rss" class="rss" title="RSS feed for the news archive">
<IconRssBox />
<span>RSS feed</span>
</a>