diff options
author | Brian Gitonga Marete <marete@toshnix.com> | 2013-10-28 10:22:22 +0200 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2013-10-28 10:22:22 +0200 |
commit | b13afd14052fa1a689e122a4c588fd9db015e1e7 (patch) | |
tree | 98de715e009330a7a187de381ca66f6a06769c5b | |
parent | e81e54f7e23b828c2b42d5cf277251dda7511be1 (diff) |
blog.go: Set the AtomFieldTitle field in blog.Config.
CL 16830043 removes the hard-coding of the atom feed title and replaces
it with a configuration field in the Config structure in the
go.tools/blog package. This CL sets that structure field.
R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/16850043
-rw-r--r-- | blog/blog.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/blog/blog.go b/blog/blog.go index 551fb48..76ca948 100644 --- a/blog/blog.go +++ b/blog/blog.go @@ -26,6 +26,7 @@ var config = blog.Config{ HomeArticles: 5, // articles to display on the home page FeedArticles: 10, // articles to include in Atom and JSON feeds PlayEnabled: true, + FeedTitle: "The Go Programming Language Blog", } func init() { |