summaryrefslogtreecommitdiff
path: root/config.go
blob: 5361d6e0c48e7a7d7d0bbb917ba81ea7ddbd6097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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:      "https://" + hostname,
	HomeArticles: 5,  // articles to display on the home page
	FeedArticles: 10, // articles to include in Atom and JSON feeds
	FeedTitle:    "dim13",
	ContentPath:  "htdocs/content",
	TemplatePath: "htdocs/template",
}