diff options
author | Alex Scerba <alex@scerba.org> | 2025-02-11 15:12:06 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2025-02-11 15:12:06 -0500 |
commit | 300c864f12cac1a5651f629c8268809d4e89e86e (patch) | |
tree | 3bcaec5f4e620b67dc8c063ba3fb576929fcf678 /cmd/http | |
parent | ffbab6c0af96817d47ee150a7071e77864b5fea1 (diff) |
Fix other instance of "posts"
Diffstat (limited to 'cmd/http')
-rw-r--r-- | cmd/http/feed.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/http/feed.go b/cmd/http/feed.go index 5b40b1e..0c40582 100644 --- a/cmd/http/feed.go +++ b/cmd/http/feed.go @@ -29,7 +29,7 @@ func generateFeed(domain string, posts []*Post) []byte { entry := ` <entry> <title>` + post.Title + `</title> - <link href="https://` + domain + `/posts/` + post.File + `.html"/> + <link href="https://` + domain + `/blog/` + post.File + `.html"/> <id>https://` + domain + `/blog/` + post.File + `</id> <published>` + post.Date + `T00:00:00.000Z</published> <updated>` + post.Date + `T00:00:00.000Z</updated> |