Base skeleton of the configuration
This commit is contained in:
parent
6139a25c63
commit
8c3f33a69b
1 changed files with 59 additions and 2 deletions
61
config.toml
61
config.toml
|
@ -1,3 +1,60 @@
|
|||
baseURL = "http://example.org/"
|
||||
title = "dennogumi.org"
|
||||
Title = "dennogumi.org"
|
||||
baseURL = "https://www.dennogumi.org"
|
||||
languageCode = "en-us"
|
||||
title = "My New Hugo Site"
|
||||
theme = "ananke"
|
||||
description = "on the web since 1999"
|
||||
|
||||
DefaultContentLanguage = "en"
|
||||
SectionPagesMenu = "main"
|
||||
Paginate = 10 # this is set low for demonstrating with dummy content. Set to a higher number
|
||||
googleAnalytics = ""
|
||||
enableRobotsTXT = true
|
||||
|
||||
[sitemap]
|
||||
changefreq = "monthly"
|
||||
priority = 0.5
|
||||
filename = "sitemap.xml"
|
||||
|
||||
[permalinks]
|
||||
blog = "/:year/:month/:title/"
|
||||
post = "/:year/:month/:title/"
|
||||
|
||||
[menu]
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
identifier="about"
|
||||
weight = 1
|
||||
url = "/about/"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Bio"
|
||||
weight = 2
|
||||
url = "/about/bio/"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Projects"
|
||||
weight = 3
|
||||
url = "/projects/"
|
||||
|
||||
[params]
|
||||
favicon = ""
|
||||
site_logo = ""
|
||||
description = ""
|
||||
facebook = ""
|
||||
mainSections = ["post"]
|
||||
twitter = "https://twitter.com/GoHugoIO"
|
||||
instagram = ""
|
||||
youtube = ""
|
||||
github = ""
|
||||
gitlab = ""
|
||||
linkedin = ""
|
||||
mastodon = ""
|
||||
slack = ""
|
||||
stackoverflow = ""
|
||||
rss = "https://www.dennogumi.org/feed/"
|
||||
# choose a background color from any on this page: http://tachyons.io/docs/themes/skins/ and preface it with "bg-"
|
||||
background_color_class = "bg-black"
|
||||
featured_image = "/images/banner.jpg"
|
||||
recent_posts_number = 2
|
||||
|
|
Loading…
Add table
Reference in a new issue