Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Faria <leonardofaria@gmail.com>2020-07-06 07:16:49 +0300
committerLeonardo Faria <leonardofaria@gmail.com>2020-07-06 07:16:49 +0300
commit2436ad8094cd2e5786bc79608d200fedd2f8d8e2 (patch)
tree9d8ab0e7b66cd674f63017207fdf53a8e9db4f0e
parentcb96983cb01a52536284c5d00ab25887d180cc16 (diff)
Re-organize config file
-rw-r--r--exampleSite/config.toml23
1 files changed, 17 insertions, 6 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index d9b5648..3618b99 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -6,41 +6,52 @@ title = "Bento"
author = "Leonardo Faria"
copyright = "MIT"
-# Code higlighting settings
+[taxonomies]
+category = "categories"
+tag = "tags"
+
+# Better code higlighting
+# via https://discourse.gohugo.io/t/pygmentscodefences-how-to-choose-themes/3842/3
pygmentsCodefences = true
pygmentsStyle = "vs"
+# Integrations
googleAnalytics = "UA-157386-36"
disqusShortname = "bento-hugo-theme"
-[taxonomies]
-category = "categories"
-tag = "tags"
-
+# Hightlight theme
[markup.highlight]
style = "github"
+
+# Allow HTML rendering inside markdown
[markup.goldmark.renderer]
unsafe = true
[params]
- name = "Bento"
+ # Show intro in the home page (with headline and description)
intro = true
headline = "This is a headline"
description = "A minimalist theme for Hugo, build with Tailwind CSS."
+ # Copyright note in the footer
copyright = "Copyright © 2020 Someone"
+ # Image in the homepage. You can setup a different image for social media
cover = "images/vancouver.jpg"
ogImage = "images/og_image.jpg"
+ # Social media usernames
github = "XXXX"
twitter = "XXXX"
linkedin = "https://linkedin.com/in/XXXX"
email = "email@xxxx.com"
+ # Avatar (shown in the homepage)
avatar = "images/avatar.jpg"
+ # Bio is shown in the end of posts
authorBio = "Bento is a doggo who likes to code. Follow him on <a href='#'>Twitter</a>"
+# Items in the top menu
[menu]
[[menu.main]]
name = "About"