85 lines
2.0 KiB
TOML
85 lines
2.0 KiB
TOML
languageCode = 'en-us'
|
|
title = 'Scottyah Bloggins'
|
|
theme = 'cactus'
|
|
contentdir = "content"
|
|
publishdir = "public"
|
|
googleAnalytics = "UA-56514503-1"
|
|
|
|
|
|
[[menu.main]]
|
|
name = "Home"
|
|
url = "/"
|
|
weight = 1
|
|
|
|
[[menu.main]]
|
|
name = "Posts"
|
|
url = "/posts"
|
|
weight = 2
|
|
|
|
[[menu.main]]
|
|
name = "About"
|
|
url = "/about/"
|
|
weight = 3
|
|
|
|
[[menu.main]]
|
|
name = "Projects"
|
|
url = "/projects/"
|
|
weight = 4
|
|
|
|
[[menu.main]]
|
|
name = "Treasures"
|
|
url = "/Treasures/"
|
|
weight = 5
|
|
|
|
|
|
[markup]
|
|
[markup.tableOfContents]
|
|
endLevel = 5
|
|
ordered = true
|
|
startLevel = 2
|
|
[markup.highlight]
|
|
codeFences = true
|
|
guessSyntax = false
|
|
hl_Lines = ""
|
|
lineNoStart = 1
|
|
lineNos = true
|
|
lineNumbersInTable = false
|
|
noClasses = true
|
|
style = "dracula"
|
|
tabWidth = 4
|
|
|
|
[params]
|
|
|
|
colortheme = "white" # dark, light, white, or classic
|
|
rss = true # generate rss feed. default value is false
|
|
googleAnalyticsAsync = false # use asynchronous tracking. Synchronous tracking by default
|
|
showAllPostsArchive = false
|
|
|
|
# Home page settings
|
|
description = "YAPB: Yet Another Programmer's Blog"
|
|
mainSection = "posts" # your main section
|
|
mainSectionTitle = "Posts"
|
|
showAllPostsOnHomePage = false
|
|
postsOnHomePage = 5 # this option will be ignored if showAllPostsOnHomePage is set to true
|
|
showProjectsList = true # show projects list by default (if projects data file exists).
|
|
projectsUrl = "projects" # title link for projects list
|
|
|
|
# https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
|
|
dateFormat = "2006-01-02" # default
|
|
|
|
# Post page settings
|
|
show_updated = true # default
|
|
showReadTime = true # default
|
|
|
|
|
|
# the value of name should be an valid font awesome icon name (brands type)
|
|
# https://fontawesome.com/icons?d=gallery&s=brands
|
|
[[params.social]]
|
|
name = "github"
|
|
link = "https://github.com/scottyah"
|
|
[[params.social]]
|
|
name = "linkedin"
|
|
link = "https://www.linkedin.com/in/scott-hatlen/"
|
|
[[params.social]]
|
|
name = "email"
|
|
link = "scotty.a.h@gmail.com" # no need for "mailto:" in the head |