From b13afd14052fa1a689e122a4c588fd9db015e1e7 Mon Sep 17 00:00:00 2001 From: Brian Gitonga Marete Date: Mon, 28 Oct 2013 10:22:22 +0200 Subject: 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 --- blog/blog.go | 1 + 1 file changed, 1 insertion(+) 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() { -- cgit v1.2.3