Hugo Basic Example
This commit is contained in:
parent
6283825517
commit
c094fefa84
19 changed files with 559 additions and 0 deletions
61
hugoBasicExample/config.toml
Normal file
61
hugoBasicExample/config.toml
Normal file
|
@ -0,0 +1,61 @@
|
|||
baseURL = "https://gohugo.io"
|
||||
title = "Hugo Themes"
|
||||
author = "Steve Francia"
|
||||
copyright = "Copyright © 2008–2019, Steve Francia and the Hugo Authors; all rights reserved."
|
||||
paginate = 3
|
||||
languageCode = "en"
|
||||
DefaultContentLanguage = "en"
|
||||
enableInlineShortcodes = true
|
||||
|
||||
summarylength = 10
|
||||
enableEmoji = true
|
||||
|
||||
[params]
|
||||
description = ""
|
||||
# gravatar = "lanyon@example.com"
|
||||
profilePicture = "images/profile.png"
|
||||
copyright = "Author Name"
|
||||
license = "CC BY-SA 4.0"
|
||||
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fa-linkedin"
|
||||
title = "Linkedin"
|
||||
url = "#"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fa-github"
|
||||
title = "GitHub"
|
||||
url = "#"
|
||||
|
||||
[[params.socialIcons]]
|
||||
icon = "fa-twitter"
|
||||
title = "Twitter"
|
||||
url = "#"
|
||||
|
||||
[menu]
|
||||
|
||||
[[menu.main]]
|
||||
name = "Posts"
|
||||
weight = 100
|
||||
identifier = "posts"
|
||||
url = "/posts/"
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
identifier = "about"
|
||||
weight = 300
|
||||
url = "/about/"
|
||||
|
||||
[markup]
|
||||
|
||||
[markup.highlight]
|
||||
codeFences = true
|
||||
guessSyntax = false
|
||||
hl_Lines = ""
|
||||
lineNoStart = 1
|
||||
lineNos = false
|
||||
lineNumbersInTable = true
|
||||
noClasses = true
|
||||
style = "monokai"
|
||||
tabWidth = 4
|
Loading…
Add table
Add a link
Reference in a new issue