summaryrefslogtreecommitdiff
path: root/config.go
blob: 7fcbf17ab23404c1b4b94617741fb118e705d66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2013 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Command blog is a web server for the Go blog that can run on App Engine or
// as a stand-alone HTTP server.
package main

import (
	"golang.org/x/tools/blog"
)

const hostname = "www.dim13.org" // default hostname for blog server

var config = blog.Config{
	Hostname:     hostname,
	BaseURL:      "//" + hostname,
	HomeArticles: 5,  // articles to display on the home page
	FeedArticles: 10, // articles to include in Atom and JSON feeds
	FeedTitle:    "dim-i-tri",
	ContentPath:  "htdocs/content",
	TemplatePath: "htdocs/template",
}