diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2023-01-22 12:45:03 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2023-01-22 12:45:03 +0100 |
commit | 5b5a0438682ecb69bbc8d7cb9904ad4b049033a3 (patch) | |
tree | bf5a689a3df4cbf9bd6188928d79d67517be63b3 /src/http | |
parent | 1cfdac5e8c2ac802275cb29ae9149c55547f38fb (diff) |
Implement gemini atom feed
Diffstat (limited to 'src/http')
-rw-r--r-- | src/http/feed.go | 7 | ||||
-rw-r--r-- | src/http/tpl/base.html | 1 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/http/feed.go b/src/http/feed.go index 8bb01c4..918eb86 100644 --- a/src/http/feed.go +++ b/src/http/feed.go @@ -39,10 +39,9 @@ func (a *api) renderFeedHandler() http.Handler { publicURL := a.params.PublicURL.String() feed := feeds.Feed{ - Title: "Mediocre Blog", - Link: &feeds.Link{Href: publicURL + "/"}, - Description: "A mix of tech, art, travel, and who knows what else.", - Author: author, + Title: "mediocregopher's lil web corner", + Link: &feeds.Link{Href: publicURL + "/"}, + Author: author, } for _, post := range posts { diff --git a/src/http/tpl/base.html b/src/http/tpl/base.html index dbfdbb0..612657e 100644 --- a/src/http/tpl/base.html +++ b/src/http/tpl/base.html @@ -2,6 +2,7 @@ <html> <head> + <title>mediocregopher's lil web corner</title> <style>{{ StaticInlineCSS "new.css" }}</style> <style>{{ StaticInlineCSS "mediocre.css" }}</style> |