mirror of https://github.com/jpanther/congo.git
📝 Document configuration files
parent
915582aa1f
commit
8f099316b5
|
@ -1,3 +1,8 @@
|
||||||
|
# -- Site Author Details --
|
||||||
|
# To display the author box below each article, configure the settings below.
|
||||||
|
# The author image should be placed inside the `/static` folder.
|
||||||
|
# Uncomment any links to enable them. The icons will be displayed in the order listed.
|
||||||
|
|
||||||
[author]
|
[author]
|
||||||
# name = "Your name here"
|
# name = "Your name here"
|
||||||
# image = "/img/author.jpg"
|
# image = "/img/author.jpg"
|
||||||
|
|
|
@ -1,9 +1,23 @@
|
||||||
|
# -- Site Configuration --
|
||||||
theme = "congo"
|
theme = "congo"
|
||||||
|
|
||||||
|
# Speficiy the base URL for the website.
|
||||||
# baseURL = "https://your_domain.com/"
|
# baseURL = "https://your_domain.com/"
|
||||||
|
|
||||||
|
# The language code of the language that the website is written in.
|
||||||
|
# This can be a base language (ie. "en") or a specific variant (ie. "en-AU").
|
||||||
languageCode = "en"
|
languageCode = "en"
|
||||||
|
|
||||||
|
# The website title. This will be displayed in the site header.
|
||||||
title = "Congo"
|
title = "Congo"
|
||||||
|
|
||||||
|
# A default copyright message is generated automatically.
|
||||||
|
# Uncomment the line below to provide a custom copyright Markdown string.
|
||||||
# copyright = "Copy, _right?_ :thinking_face:"
|
# copyright = "Copy, _right?_ :thinking_face:"
|
||||||
|
|
||||||
|
# To automatically convert strings such as :bang: to emoji, set this to true.
|
||||||
enableEmoji = true
|
enableEmoji = true
|
||||||
|
|
||||||
|
# Congo will generate a robots file that allows search engines to index
|
||||||
|
# the entire site. If you don't want a robots file, set this to false.
|
||||||
enableRobotsTXT = true
|
enableRobotsTXT = true
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# -- Markup --
|
||||||
|
# These settings are required for the theme to function.
|
||||||
|
|
||||||
[goldmark]
|
[goldmark]
|
||||||
[goldmark.renderer]
|
[goldmark.renderer]
|
||||||
unsafe = true
|
unsafe = true
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
# -- Main Menu --
|
||||||
|
# The main menu is displayed at the top of the theme.
|
||||||
|
# Acceptable parameters are name, pageRef, page, url, title, weight.
|
||||||
|
#
|
||||||
|
# The simplest menu configuration is to provide:
|
||||||
|
# name = The name to be displayed for this menu link
|
||||||
|
# pageRef = The identifier of the page or section to link to
|
||||||
|
#
|
||||||
|
# By default the menu is ordered alphabetically. This can be
|
||||||
|
# overridden by providing a weight value. The menu will then be
|
||||||
|
# ordered by weight from lowest to highest.
|
||||||
|
|
||||||
[[main]]
|
[[main]]
|
||||||
name = "Blog"
|
name = "Blog"
|
||||||
pageRef = "posts"
|
pageRef = "posts"
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
|
# -- Site Verification --
|
||||||
|
# Provide the verification strings for the providers below and the
|
||||||
|
# corresponding meta tags will be added to the site <head>.
|
||||||
|
|
||||||
[verification]
|
[verification]
|
||||||
# google = ""
|
# google = ""
|
||||||
# bing = ""
|
# bing = ""
|
||||||
# pinterest = ""
|
# pinterest = ""
|
||||||
# yandex = ""
|
# yandex = ""
|
||||||
|
|
||||||
|
|
||||||
|
# -- Fathom Analytics --
|
||||||
|
# To enable Fathom Analytics on your site, specify your site code below.
|
||||||
|
# If you also use a custom domain with Fathom, you can add it at `domain`.
|
||||||
|
|
||||||
[fathomAnalytics]
|
[fathomAnalytics]
|
||||||
# site = "ABC12345"
|
# site = "ABC12345"
|
||||||
# domain = "llama.yoursite.com"
|
# domain = "llama.yoursite.com"
|
||||||
|
|
Loading…
Reference in New Issue