Skip to content

Commit

Permalink
refactor(config): use YAML instead of TOML
Browse files Browse the repository at this point in the history
closes #62
  • Loading branch information
Jimmy Cai committed Dec 11, 2020
1 parent e1277f4 commit a080184
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 105 deletions.
105 changes: 0 additions & 105 deletions exampleSite/config.toml

This file was deleted.

110 changes: 110 additions & 0 deletions exampleSite/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
baseurl: 'https://example.com'
languageCode: en-us
theme: hugo-theme-stack
paginate: 5
title: Example Site
disqusShortname: hugo-theme-stack # Change it to your Disqus shortname before using
DefaultContentLanguage: en # Theme i18n support

permalinks:
post: '/p/:slug/'
page: '/:slug/'

params:
mainSections:
- post
featuredImageField: image
rssFullContent: true

dateFormat:
published: Jan 02, 2006
lastUpdated: Jan 02, 2006 15:04 MST

sidebar:
emoji: 🍥
subtitle: Lorem ipsum dolor sit amet, consectetur adipiscing elit.
avatar:
local: true
src: img/avatar.png

article:
math: false
license:
enabled: true
default: Licensed under CC BY-NC-SA 4.0

comments:
enabled: true
provider: disqus
utterances:
repo:
issueTerm: pathname
label:
theme: preferred-color-scheme

widgets:
enabled:
- search
- archives
- tag-cloud

archives:
limit: 5
path: archives

tagCloud:
limit: 10

opengraph:
twitter:
site:
card: summary_large_image

defaultImage:
opengraph:
enabled: false
local: false
src:

menu:
main:
-
identifier: home
name: Home
url: /
weight: -100
pre: home
-
identifier: about-cn
name: About
url: about
weight: -90
pre: user
-
identifier: archives
name: Archives
url: archives
weight: -70
pre: archives
-
identifier: search
name: Search
url: search
weight: -60
pre: search

related:
includeNewer: true
threshold: 60
toLower: false
indices:
-
name: tags
weight: 100
-
name: categories
weight: 200

markup:
highlight:
noClasses: false

0 comments on commit a080184

Please sign in to comment.