summaryrefslogtreecommitdiff
path: root/config.go
blob: c89f79a482bb53472a9eaf07dda14345cb10df8e (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:    "dim13",
	ContentPath:  "htdocs/content",
	TemplatePath: "htdocs/template",
}