This commit is contained in:
13
config/_default/config.toml
Normal file
13
config/_default/config.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
# -- Site Configuration --
|
||||
# Refer to the theme docs for more details about each of these parameters.
|
||||
# https://jpanther.github.io/congo/docs/getting-started/
|
||||
|
||||
baseURL = "https://elara.ws/"
|
||||
defaultContentLanguage = "en"
|
||||
|
||||
enableRobotsTXT = true
|
||||
paginate = 10
|
||||
summaryLength = 0
|
||||
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "JSON"]
|
||||
23
config/_default/languages.en.toml
Normal file
23
config/_default/languages.en.toml
Normal file
@@ -0,0 +1,23 @@
|
||||
title = "Elara"
|
||||
#description = "My awesome website"
|
||||
copyright = "Copyright © Elara6331"
|
||||
|
||||
[languages.en.params]
|
||||
languageCode = "en"
|
||||
languageName = "English"
|
||||
displayName = "EN"
|
||||
dateFormat = "January 2, 2006"
|
||||
isoCode = "en"
|
||||
weight = 1
|
||||
rtl = false
|
||||
|
||||
[params.author]
|
||||
name = "Elara6331"
|
||||
image = "img/nebula.jpg"
|
||||
headline = "Software Engineer"
|
||||
bio = "I'm a FOSS developer who loves writing code and solving problems"
|
||||
links = [
|
||||
{ email = "mailto:elara@elara.ws" },
|
||||
{ gitea = "https://gitea.elara.ws/Elara6331" },
|
||||
{ github = "https://github.com/Elara6331" },
|
||||
]
|
||||
13
config/_default/markup.toml
Normal file
13
config/_default/markup.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
# -- Markup --
|
||||
# These settings are required for the theme to function.
|
||||
|
||||
[goldmark]
|
||||
[goldmark.renderer]
|
||||
unsafe = true
|
||||
|
||||
[highlight]
|
||||
noClasses = false
|
||||
|
||||
[tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 4
|
||||
40
config/_default/menus.en.toml
Normal file
40
config/_default/menus.en.toml
Normal file
@@ -0,0 +1,40 @@
|
||||
# -- Main Menu --
|
||||
# The main menu is displayed in the header at the top of the page.
|
||||
# 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]]
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 10
|
||||
|
||||
[[main]]
|
||||
name = "About"
|
||||
pageRef = "about"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Articles"
|
||||
pageRef = "articles"
|
||||
weight = 30
|
||||
|
||||
# -- Footer Menu --
|
||||
# The footer menu is displayed at the bottom of the page, just before
|
||||
# the copyright notice. Configure as per the main menu above.
|
||||
|
||||
[[footer]]
|
||||
name = "Source Code"
|
||||
url = "https://gitea.elara.ws/Elara6331/site"
|
||||
weight = 40
|
||||
|
||||
[[footer]]
|
||||
name = "Donate"
|
||||
url = "https://liberapay.com/Elara6331/"
|
||||
weight = 50
|
||||
2
config/_default/module.toml
Normal file
2
config/_default/module.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[[imports]]
|
||||
path = "github.com/jpanther/congo/v2"
|
||||
73
config/_default/params.toml
Normal file
73
config/_default/params.toml
Normal file
@@ -0,0 +1,73 @@
|
||||
# -- Theme Options --
|
||||
# These options control how the theme functions and allow you to
|
||||
# customise the display of your website.
|
||||
#
|
||||
# Refer to the theme docs for more details about each of these parameters.
|
||||
# https://jpanther.github.io/congo/docs/configuration/#theme-parameters
|
||||
|
||||
colorScheme = "ocean"
|
||||
defaultAppearance = "dark" # valid options: light or dark
|
||||
autoSwitchAppearance = false
|
||||
|
||||
enableSearch = true
|
||||
enableCodeCopy = true
|
||||
|
||||
# mainSections = ["section1", "section2"]
|
||||
# robots = ""
|
||||
|
||||
|
||||
[header]
|
||||
layout = "hamburger" # valid options: basic, hamburger, custom
|
||||
logo = "/logo.png"
|
||||
|
||||
[footer]
|
||||
showCopyright = true
|
||||
showThemeAttribution = true
|
||||
showAppearanceSwitcher = false
|
||||
showScrollToTop = true
|
||||
|
||||
[homepage]
|
||||
layout = "profile" # valid options: page, profile, custom
|
||||
showRecent = false
|
||||
|
||||
[article]
|
||||
showDate = true
|
||||
showDateUpdated = false
|
||||
showAuthor = false
|
||||
showBreadcrumbs = true
|
||||
showDraftLabel = true
|
||||
showEdit = false
|
||||
# editURL = "https://github.com/username/repo/"
|
||||
editAppendPath = true
|
||||
showHeadingAnchors = true
|
||||
showPagination = true
|
||||
invertPagination = false
|
||||
showReadingTime = true
|
||||
showTableOfContents = true
|
||||
showTaxonomies = true
|
||||
showWordCount = false
|
||||
showComments = false
|
||||
# sharingLinks = ["facebook", "twitter", "pinterest", "reddit", "linkedin", "email"]
|
||||
|
||||
[list]
|
||||
showBreadcrumbs = false
|
||||
showSummary = true
|
||||
showTableOfContents = false
|
||||
groupByYear = false
|
||||
showTaxonomies = true
|
||||
|
||||
[sitemap]
|
||||
excludedKinds = ["taxonomy", "term"]
|
||||
|
||||
[taxonomy]
|
||||
showTermCount = true
|
||||
|
||||
[fathomAnalytics]
|
||||
# site = "ABC12345"
|
||||
# domain = "llama.yoursite.com"
|
||||
|
||||
[verification]
|
||||
# google = ""
|
||||
# bing = ""
|
||||
# pinterest = ""
|
||||
# yandex = ""
|
||||
Reference in New Issue
Block a user