95 lines
2.2 KiB
TOML
95 lines
2.2 KiB
TOML
baseURL = "http://example.org/"
|
|
languageCode = "en-us"
|
|
title = "Semantic IndieWeb Theme"
|
|
copyright = "Copyright © 2019, Copyright Owner Name"
|
|
theme = "semantic-indieweb"
|
|
paginate = 5
|
|
|
|
[permalinks]
|
|
posts = "/:year/:month/:title/"
|
|
|
|
[params]
|
|
subtitle = "A theme with no CSS and only basic layouts"
|
|
builtWith = "Built with [Hugo](https://gohugo.io/)"
|
|
homepageSectionTitle = "What's New"
|
|
mainSections = [ "posts" ]
|
|
Webmention = "https://example.org/webmention"
|
|
Pingback = "https://example.org/pingpack"
|
|
Micropub = "https://example.org/micropub"
|
|
|
|
[params.IndieAuth]
|
|
Authorization = "https://example.org/auth"
|
|
Token = "https://example.org/token"
|
|
|
|
# Configuration Parameters for IndieWeb h-card
|
|
[params.Card]
|
|
Author = "Site Author Name"
|
|
Photo = "images/picture-o.svg"
|
|
Locality = "City/Town/Village"
|
|
Region = "State/County/Province"
|
|
Country = "Country Name"
|
|
|
|
# Configuration Parameters for IndieWeb Identity
|
|
[[params.Identity]]
|
|
type = "Email"
|
|
value = "email.address@example.com"
|
|
authn = false
|
|
|
|
[[params.Identity]]
|
|
type = "GitHub"
|
|
value = "GitHubUserName"
|
|
authn = false
|
|
|
|
[[params.Identity]]
|
|
type = "GitLab"
|
|
value = "GitLabUserName"
|
|
authn = false
|
|
|
|
[[params.Identity]]
|
|
type = "Twitter"
|
|
value = "TwitterUserName"
|
|
authn = false
|
|
|
|
[[params.Identity]]
|
|
type = "MicroBlog"
|
|
value = "MicroBlogUserName"
|
|
authn = false
|
|
|
|
[[params.Identity]]
|
|
type = "PGP"
|
|
value = "pgp_key_file.txt"
|
|
authn = false
|
|
|
|
# Configuration parameters for social network links
|
|
[[params.Social]]
|
|
profile = "MastodonProfileLink"
|
|
icon = "fa fa-mastodon"
|
|
|
|
[[params.Social]]
|
|
profile = "TwitterProfileLink"
|
|
icon = "fa fa-twitter"
|
|
|
|
[[params.Social]]
|
|
profile = "GitHubProfileLink"
|
|
icon = "fa fa-github"
|
|
|
|
[[params.Social]]
|
|
profile = "GitLabProfileLink"
|
|
icon = "fa fa-gitlab"
|
|
|
|
[[params.Social]]
|
|
profile = "GiteaProfileLink"
|
|
icon = "fa fa-gitea"
|
|
|
|
[[params.Social]]
|
|
profile = "FacebookProfileLink"
|
|
icon = "fa fa-facebook"
|
|
|
|
[[params.Social]]
|
|
email = "email@example.com"
|
|
icon = "fa fa-envelope-o"
|
|
|
|
[[params.Social]]
|
|
publicKey = "pgp_key_file.txt"
|
|
fingerprint = "AAAA BBBB CCCC DDDD"
|
|
icon = "fa fa-key" |