From e834d1672c9f22225459c1b3041b06e95f1ae983 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sat, 5 Nov 2022 10:41:19 -0500 Subject: [PATCH] moving configs to proper places --- config/_default/languages.en.toml | 62 +++++++++++++++++++++++++++++++ config/_default/markup.toml | 13 +++++++ config/_default/menus.en.toml | 58 +++++++++++++++++++++++++++++ 3 files changed, 133 insertions(+) create mode 100644 config/_default/languages.en.toml create mode 100644 config/_default/markup.toml create mode 100644 config/_default/menus.en.toml diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml new file mode 100644 index 0000000..c89043a --- /dev/null +++ b/config/_default/languages.en.toml @@ -0,0 +1,62 @@ +languageCode = "en" +languageName = "English" +displayName = "EN" +isoCode = "en" +weight = 1 +rtl = false + +title = "TFC Connection" +description = "Connecting teens with the truth of Jesus Christ… teaching and equipping them to live out the Great Commission." +# copyright = "Copy, _right?_ :thinking_face:" + +dateFormat = "2 January 2006" + +[author] + name = "TFC Connection" + image = "img/logo.png" + headline = "Teens For Christ Connection" + bio = "Connecting teens with the truth of Jesus Christ… teaching and equipping them to live out the Great Commission." + links = [ + # { email = "mailto:hello@your_domain.com" }, + # { link = "https://link-to-some-website.com/" }, + # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, + # { apple = "https://www.apple.com" }, + # { blogger = "https://username.blogspot.com/" }, + # { codepen = "https://codepen.io/username" }, + # { dev = "https://dev.to/username" }, + # { discord = "https://discord.gg/invitecode" }, + # { dribbble = "https://dribbble.com/username" }, + { facebook = "https://facebook.com/tfcconnection" }, + # { flickr = "https://www.flickr.com/photos/username/" }, + # { foursquare = "https://foursquare.com/username" }, + # { github = "https://github.com/username" }, + # { gitlab = "https://gitlab.com/username" }, + # { google = "https://www.google.com/" }, + # { hashnode = "https://username.hashnode.dev" }, + { instagram = "https://instagram.com/tfcconnection" }, + # { keybase = "https://keybase.io/username" }, + # { kickstarter = "https://www.kickstarter.com/profile/username" }, + # { lastfm = "https://lastfm.com/user/username" }, + # { linkedin = "https://linkedin.com/in/username" }, + # { mastodon = "https://mastodon.instance/@username" }, + # { medium = "https://medium.com/username" }, + # { microsoft = "https://www.microsoft.com/" }, + # { orcid = "https://orcid.org/userid" }, + # { patreon = "https://www.patreon.com/username" }, + # { pinterest = "https://pinterest.com/username" }, + # { reddit = "https://reddit.com/user/username" }, + # { researchgate = "https://www.researchgate.net/profile/username" }, + # { slack = "https://workspace.url/team/userid" }, + # { snapchat = "https://snapchat.com/add/username" }, + # { soundcloud = "https://soundcloud.com/username" }, + # { stack-overflow = "https://stackoverflow.com/users/userid/username" }, + # { steam = "https://steamcommunity.com/profiles/userid" }, + # { telegram = "https://t.me/username" }, + # { tiktok = "https://tiktok.com/@username" }, + # { tumblr = "https://username.tumblr.com" }, + # { twitch = "https://twitch.tv/username" }, + # { twitter = "https://twitter.com/username" }, + # { whatsapp = "https://wa.me/phone-number" }, + # { youtube = "https://youtube.com/username" }, + # { ko-fi = "https://ko-fi.com/username" }, + ] diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..c5449fc --- /dev/null +++ b/config/_default/markup.toml @@ -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 diff --git a/config/_default/menus.en.toml b/config/_default/menus.en.toml new file mode 100644 index 0000000..654cf29 --- /dev/null +++ b/config/_default/menus.en.toml @@ -0,0 +1,58 @@ +# -- 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 = "About" + pageRef = "about" + weight = 10 + +[[main]] + name = "Ministries" + pageRef = "ministries" + weight = 20 + +[[main]] + name = "Staff" + pageRef = "staff" + weight = 30 + +[[main]] + name = "Donate" + pageRef = "donate" + weight = 40 + +[[main]] + name = "Contact" + pageRef = "contact" + weight = 50 + +# -- 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 = "Tags" + pageRef = "tags" + weight = 10 + +[[footer]] + pre = "facebook" + name = "Facebook" + url = "https://facebook.com/tfcconnection" + weight = 20 + +[[footer]] + pre = "instagram" + name = "Instagram" + url = "https://instagram.com/tfcconnection" + weight = 30 \ No newline at end of file