35 lines
633 B
TOML
35 lines
633 B
TOML
baseurl = "http://example.com"
|
|
languageCode = "en"
|
|
title = "Your Site Name"
|
|
copyright = "Your Site copyright"
|
|
paginate = 3
|
|
|
|
googleAnalytics = "Yout Google Analytics ID"
|
|
|
|
theme = "minimage"
|
|
|
|
[params]
|
|
description = "Your site description"
|
|
author = "Your Name"
|
|
logo = '/image/logo.png'
|
|
|
|
[taxonomies]
|
|
category = "categories"
|
|
tag = "tags"
|
|
|
|
[[menu.global]]
|
|
name = "Development"
|
|
url = "/categories/Development/"
|
|
|
|
[[menu.global]]
|
|
name = "golang"
|
|
url = "/categories/golang/"
|
|
|
|
[[menu.footer]]
|
|
name = "About"
|
|
url = "/page/about/"
|
|
|
|
[sitemap]
|
|
changefreq = "monthly"
|
|
priority = 0.5
|
|
filename = "sitemap.xml"
|