dot-hugo/exampleSite/config.toml

198 lines
4.8 KiB
TOML
Raw Normal View History

################################# Default configuration ###################
# provide your domain here
2022-02-07 10:18:33 +00:00
baseURL = "https://demo.gethugothemes.com/dot/examplesite/"
# theme
2021-10-11 04:32:25 +00:00
theme = "dot-hugo"
# site title
title = "Dot"
2020-04-23 03:04:24 +00:00
# disable language
disableLanguages = []
2020-04-23 03:04:24 +00:00
# google analytics
2020-05-04 05:25:58 +00:00
googleAnalytics = "" # paste your analytics ID here. (Ex: UA-123-45)
2020-04-11 04:07:02 +00:00
# unsafe html
[markup.goldmark.renderer]
2020-08-25 03:08:55 +00:00
unsafe = true
############################# Default Parameters ##########################
2019-01-06 10:40:05 +00:00
[params]
# logo is for all page
logo = ""
# logo white is for homepage logo, you can use colorful logo too...
logo_white = ""
# when logo is empty, it will shown your site title
2021-04-29 03:13:39 +00:00
# OpenGraph / Twitter Card metadata
description = "This is meta description"
author = "Themefisher"
image = "images/logo.png" # this image will be used as fallback if a page has no image of its own
# customize color
primary_color = "#02007e"
body_color = "#f9f9f9"
text_color = "#636363"
text_color_dark = "#242738"
white_color = "#ffffff"
light_color = "#f8f9fa"
# font family
font_family = "lato" # Choose font family from : https://fonts.google.com/
# contact form action
contact_form_action = "#" # contact form works with : https://formspree.io
2019-01-06 10:40:05 +00:00
############################## social links ##############################
[[params.social]]
icon = "ti-facebook" # themify icon pack : https://themify.me/themify-icons
2021-04-23 20:42:04 +00:00
name = "Facebook"
link = "#"
[[params.social]]
icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
2021-04-23 20:42:04 +00:00
name = "Twitter"
link = "#"
[[params.social]]
2020-03-28 05:29:09 +00:00
icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
2021-04-23 20:42:04 +00:00
name = "Github"
link = "#"
[[params.social]]
icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
2021-04-23 20:42:04 +00:00
name = "Linkedin"
link = "#"
################################ English Language ######################
[Languages.en]
languageName = "En"
languageCode = "en-us"
weight = 1
copyright = "Copyright © 2021 a Hugo theme by [Gethugothemes](https://gethugothemes.com/)"
# banner
[Languages.en.params.banner]
title = "Support Center & Knowledge base"
subtitle = "Find advice and answers from our support team fast or get in touch"
bg_image = "images/banner.jpg"
placeholder = "Have a question? Just ask here or enter terms"
# call to action
[Languages.en.params.cta]
enable = true
title = "Didn't find an answer to your question?"
content = "Musce libero nunc, dignissim quis turpis quis, semper vehicula dolor. Suspendisse tincidunt consequat quam."
# call to action button
[Languages.en.params.cta.button]
enable = true
label = "contact us"
2022-02-07 10:18:33 +00:00
link = "contact/"
2020-08-25 03:08:55 +00:00
################## english navigation #################
[[Languages.en.menu.main]]
name = "Home"
2022-02-07 10:18:33 +00:00
url = ""
2020-08-25 03:08:55 +00:00
weight = 1
[[Languages.en.menu.main]]
name = "Faq"
2022-02-07 10:18:33 +00:00
url = "faq/"
2020-08-25 03:08:55 +00:00
weight = 2
[[Languages.en.menu.main]]
name = "contact"
2022-02-07 10:18:33 +00:00
url = "contact/"
2020-08-25 03:08:55 +00:00
weight = 3
# Dropdown menu
[[Languages.en.menu.main]]
weight = 4
name = "docs"
hasChildren = true
[[Languages.en.menu.main]]
parent = "docs"
name = "Installation"
2022-02-07 10:18:33 +00:00
url = "installation/"
2020-08-25 03:08:55 +00:00
weight = 1
[[Languages.en.menu.main]]
parent = "docs"
name = "Billing and Pricing"
2022-02-07 10:18:33 +00:00
url = "billing-pricing/"
2020-08-25 03:08:55 +00:00
weight = 2
[[Languages.en.menu.main]]
parent = "docs"
name = "Features"
2022-02-07 10:18:33 +00:00
url = "features/"
2020-08-25 03:08:55 +00:00
weight = 3
################################### Franch Language ######################
[Languages.fr]
languageName = "Fr"
languageCode = "fr-fr"
weight = 2
copyright = "Copyright © 2021 un thème Hugo par [Gethugothemes](https://gethugothemes.com/)"
# banner
[Languages.fr.params.banner]
title = "Comment pouvons nous aider?"
subtitle = "Trouvez rapidement des conseils et des réponses auprès de notre équipe d'assistance ou contactez-nous."
bg_image = "images/banner.jpg"
placeholder = "Avoir une question? Il suffit de demander ici ou de saisir les termes"
# call to action
[Languages.fr.params.cta]
enable = true
title = "Vous n'avez pas trouvé de réponse à votre question?"
content = "Contactez-nous pour plus de détails sur les services supplémentaires et la tarification du travail personnalisé"
# call to action button
[Languages.fr.params.cta.button]
enable = true
label = "Contactez nous"
2022-02-07 10:18:33 +00:00
link = "contact/"
2020-08-25 03:08:55 +00:00
################## french navigation #################
[[Languages.fr.menu.main]]
name = "Accueil"
url = "/"
weight = 1
[[Languages.fr.menu.main]]
name = "Faq"
2022-02-07 10:18:33 +00:00
url = "faq/"
2020-08-25 03:08:55 +00:00
weight = 2
[[Languages.fr.menu.main]]
name = "contact"
2022-02-07 10:18:33 +00:00
url = "contact/"
2020-08-25 03:08:55 +00:00
weight = 3
# Dropdown menu
[[Languages.fr.menu.main]]
weight = 4
name = "docs"
hasChildren = true
[[Languages.fr.menu.main]]
parent = "docs"
name = "Installation"
2022-02-07 10:18:33 +00:00
url = "installation/"
2020-08-25 03:08:55 +00:00
weight = 1
[[Languages.fr.menu.main]]
parent = "docs"
name = "Billing and Pricing"
2022-02-07 10:18:33 +00:00
url = "billing-pricing/"
2020-08-25 03:08:55 +00:00
weight = 2
[[Languages.fr.menu.main]]
parent = "docs"
name = "Features"
2022-02-07 10:18:33 +00:00
url = "features/"
2021-10-11 04:32:25 +00:00
weight = 3