aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Scerba <alex@scerba.org>2025-02-11 15:09:17 -0500
committerAlex Scerba <alex@scerba.org>2025-02-11 15:09:17 -0500
commitffbab6c0af96817d47ee150a7071e77864b5fea1 (patch)
tree3b36b7a63089509cf3b3645e41a44d653c46e5a6
parentf5a8f1e2e0d21c22549937d94746b89ff81b1835 (diff)
Switch from posts to blog path
-rw-r--r--cmd/http/feed.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/http/feed.go b/cmd/http/feed.go
index 97e084a..5b40b1e 100644
--- a/cmd/http/feed.go
+++ b/cmd/http/feed.go
@@ -30,7 +30,7 @@ func generateFeed(domain string, posts []*Post) []byte {
<entry>
<title>` + post.Title + `</title>
<link href="https://` + domain + `/posts/` + post.File + `.html"/>
- <id>https://` + domain + `/posts/` + post.File + `</id>
+ <id>https://` + domain + `/blog/` + post.File + `</id>
<published>` + post.Date + `T00:00:00.000Z</published>
<updated>` + post.Date + `T00:00:00.000Z</updated>
<summary>Blog post</summary>`