summaryrefslogtreecommitdiff
path: root/hugoBasicExample/config.toml
diff options
context:
space:
mode:
authorAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-02-10 19:39:06 +0100
committerAlexandre Vicenzi <vicenzi.alexandre@gmail.com>2020-02-10 19:39:06 +0100
commitc094fefa843cccb1673a7a3cbd4d06ace1f2035c (patch)
tree66a044ad6cccc728124a96a0cfb36d5e4237b1bd /hugoBasicExample/config.toml
parent6283825517f49afa18b4bb6f1d820a08f8f6e290 (diff)
Hugo Basic Example
Diffstat (limited to 'hugoBasicExample/config.toml')
-rw-r--r--hugoBasicExample/config.toml61
1 files changed, 61 insertions, 0 deletions
diff --git a/hugoBasicExample/config.toml b/hugoBasicExample/config.toml
new file mode 100644
index 0000000..93a781a
--- /dev/null
+++ b/hugoBasicExample/config.toml
@@ -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