summaryrefslogtreecommitdiff
path: root/config.go
blob: a71eed5b18b488afbc6b79673e084ea1c9098065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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",
}