93 lines
3.3 KiB
TOML
93 lines
3.3 KiB
TOML
baseURL = "https://blog.rjbasitali.com"
|
||
languageCode = "en-us"
|
||
title = "Basit's Blog"
|
||
theme = "cactus"
|
||
copyright = "Basit Ali" # cactus will use title if copyright is not set
|
||
disqusShortname = "rjbasitali" # Used when comments is enabled. Cactus will use site title if not set
|
||
# googleAnalytics = "UA-1234-5"
|
||
|
||
|
||
# summaryLength = 2
|
||
|
||
# Main menu which appears below site header.
|
||
[[menu.main]]
|
||
name = "Home"
|
||
url = "/"
|
||
weight = 1
|
||
|
||
[[menu.main]]
|
||
name = "Tags"
|
||
url = "/tags"
|
||
weight = 3
|
||
|
||
[[menu.main]]
|
||
name = "About"
|
||
url = "/about"
|
||
weight = 4
|
||
|
||
[markup]
|
||
[markup.tableOfContents]
|
||
endLevel = 4
|
||
ordered = false
|
||
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 = true # use asynchronous tracking. Synchronous tracking by default
|
||
showAllPostsArchive = false # default
|
||
|
||
# Home page settings
|
||
#description = "Hugo is a general-purpose website framework. Technically speaking, Hugo is a static site generator. Unlike systems that dynamically build a page with each visitor request, Hugo builds pages when you create or update your content. Since websites are viewed far more often than they are edited, Hugo is designed to provide an optimal viewing experience for your website’s end users and an ideal writing experience for website authors."
|
||
mainSection = "posts" # your main section
|
||
showAllPostsOnHomePage = false # default
|
||
postsOnHomePage = 5 # this option will be ignored if showAllPostsOnHomePage is set to true
|
||
tagsOverview = true # show tags overview by default.
|
||
showProjectsList = false # show projects list by default (if projects data file exists).
|
||
#projectsUrl = "https://github.com/gohugoio" # 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
|
||
|
||
[params.comments]
|
||
enabled = false # default
|
||
engine = "cactus_comments" # only disqus, utterances, and cactus_comments is supported
|
||
[params.comments.utterances]
|
||
repo = "<github_username>/<github_reponame>"
|
||
label = "hugo-site-name" # you can use however you want to label your name in your repo's issues
|
||
theme = "github-light"
|
||
[params.comments.cactuscomments]
|
||
siteName = "your_cactus_comments_sitename" # see https://cactus.chat/ on how to register your site name
|
||
#serverUrl = "" # Defaults to https://matrix.cactus.chat:8448 (Cactus Chat public server)
|
||
#serverName = "" # Defaults to cactus.chat
|
||
|
||
# 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 = "website"
|
||
link = "https://rjbasitali.com"
|
||
[[params.social]]
|
||
name = "github"
|
||
link = "https://github.com/rjbasitali"
|
||
[[params.social]]
|
||
name = "linkedin"
|
||
link = "https://www.linkedin.com/in/rjbasitali/"
|
||
[[params.social]]
|
||
name = "email"
|
||
link = "rjbasitali@gmail.com" # no need for "mailto:" in the head
|