mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-07 00:58:13 +00:00
Switch themes to minimo
This commit is contained in:
145
themes/minimo/exampleSite/config.toml
Normal file
145
themes/minimo/exampleSite/config.toml
Normal file
@@ -0,0 +1,145 @@
|
||||
baseURL = "http://www.example.com"
|
||||
title = "Minimo"
|
||||
# for smart copyright line, leave this blank and check [params.copyright]
|
||||
copyright = ""
|
||||
|
||||
theme = "minimo"
|
||||
|
||||
disqusShortname = ""
|
||||
googleAnalytics = ""
|
||||
|
||||
Paginate = 5
|
||||
preserveTaxonomyNames = true
|
||||
|
||||
enableRobotsTXT = true # generate robots.txt
|
||||
|
||||
# Syntax Highlighting ( https://gohugo.io/content-management/syntax-highlighting/ )
|
||||
pygmentsCodefences = true
|
||||
|
||||
enableEmoji = true
|
||||
|
||||
# Missing translations will default to this content language
|
||||
defaultContentLanguage = "en"
|
||||
|
||||
[params.info]
|
||||
description = "Minimalist theme for Hugo"
|
||||
title404 = "Nothing's here!"
|
||||
|
||||
[params.assets]
|
||||
favicon = "favicon.ico"
|
||||
customCSS = ["css/custom.css"]
|
||||
customJS = ["js/custom.js"]
|
||||
gopher = "" # used in 404 template ( Generator: https://gopherize.me )
|
||||
|
||||
[params.copyright]
|
||||
prefix = ""
|
||||
holder = "MunifTanjim"
|
||||
startYear = "2017"
|
||||
suffix = ""
|
||||
|
||||
[params.settings]
|
||||
# date & time format: https://golang.org/pkg/time/
|
||||
dateFormat = "2006, Jan 02"
|
||||
listDateFormat = "2006, Jan 02"
|
||||
archiveDateFormat = "Jan 02"
|
||||
hideEntryNavigation = ["page"] # boolean / array of sections
|
||||
hideEntryMeta = ["page"] # boolean / array of sections
|
||||
showReadingTime = true
|
||||
showLastmod = true
|
||||
taxonomyCloudShuffle = true
|
||||
accentColor = "#ffcd00"
|
||||
hideMainMenu = false
|
||||
|
||||
[params.sidebar]
|
||||
enable = true
|
||||
|
||||
[params.widgets]
|
||||
header = ["breadcrumbs"]
|
||||
homepage = ["recent_posts"]
|
||||
sidebar = ["about","search","sidebar_menu","taxonomy_cloud"]
|
||||
footer = ["social_menu"]
|
||||
|
||||
[params.opengraph.facebook]
|
||||
admins = [] # array of Facebook IDs
|
||||
appID = ""
|
||||
pageID = ""
|
||||
|
||||
[params.opengraph.twitter]
|
||||
page = "" # Twitter page username
|
||||
|
||||
[params.seo]
|
||||
# Title Separator: - – — · • * ⋆ | ~ « » < >
|
||||
titleSeparator = "•"
|
||||
|
||||
[params.social]
|
||||
codepen = "MunifTanjim"
|
||||
email = "contact@example.com"
|
||||
facebook = "MunifTanjim"
|
||||
github = "MunifTanjim"
|
||||
gitlab = "MunifTanjim"
|
||||
instagram = "MunifTanjim"
|
||||
linkedin = "muniftanjim"
|
||||
twitter = "MunifTanjim"
|
||||
telegram = "MunifTanjim"
|
||||
google_scholar = "qc6CJjYAAAAJ"
|
||||
youtube = "UCT-U0rNerYxItGcuoPX-WYA"
|
||||
|
||||
[params.comments]
|
||||
enable = false
|
||||
|
||||
# Isso: https://posativ.org/isso/
|
||||
[params.comments.isso]
|
||||
enable = false
|
||||
scriptSrc = "" # "https://isso.example.com/js/embed.min.js"
|
||||
dataAttrs = "" # "data-isso='https://isso.example.com' data-isso-require-author='true'"
|
||||
|
||||
[params.comments.staticman]
|
||||
enable = true
|
||||
apiEndpoint = "https://api.staticman.net/v2/entry"
|
||||
maxDepth = 2
|
||||
username = "MunifTanjim"
|
||||
repository = "minimo"
|
||||
|
||||
# Utterances: https://utteranc.es
|
||||
[params.comments.utterances]
|
||||
enable = false
|
||||
issueTerm = "pathname" # pathname / url / title / og:title / <string>
|
||||
label = ""
|
||||
theme = "github-light"
|
||||
|
||||
[params.comments.utterances.github]
|
||||
username = "MunifTanjim"
|
||||
repository = "minimo"
|
||||
|
||||
[params.search]
|
||||
client = "fuse" # algolia / fuse / lunr
|
||||
|
||||
[params.search.algolia]
|
||||
appId = ""
|
||||
indexName = ""
|
||||
searchApiKey = ""
|
||||
|
||||
[taxonomies]
|
||||
author = "authors"
|
||||
category = "categories"
|
||||
series = "series"
|
||||
tag = "tags"
|
||||
|
||||
[permalinks]
|
||||
page = "/:slug/"
|
||||
|
||||
[[menu.main]]
|
||||
name = "Repo"
|
||||
weight = -10
|
||||
identifier = "repository"
|
||||
url = "https://github.com/MunifTanjim/minimo"
|
||||
|
||||
[blackfriday]
|
||||
hrefTargetBlank = true
|
||||
|
||||
[languages]
|
||||
# edit this block for your own language
|
||||
[languages.en]
|
||||
lang = "en"
|
||||
languageName = "English"
|
||||
weight = 1
|
Reference in New Issue
Block a user