diff --git a/config/_default/config.toml b/config/_default/config.toml index 551637d..6bb39e5 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -2,9 +2,22 @@ baseURL = "https://baalajimaestro.me" languageCode = "en-US" title = "baalajimaestro" +enableEmoji = true +enableRobotsTXT = false + [author] -name = "Baalaji" -image = "" -links = [ - { twitter = "https://twitter.com/baalajimaestro" } -] +name = "baalajimaestro" +image = "images/logo.png" + + links = [ + { github = "https://github.com/baalajimaestro" }, + { gitlab = "https://gitlab.com/baalajimaestro" }, + { sourcehut = "https://git.sr.ht/~baalajimaestro" }, + { telegram = "https://t.me/baalajimaestro" }, + { discord = "https://discord.com/users/404797553272684555" }, + { instagram = "https://instagram.com/baalajimaestro" }, + { reddit = "https://reddit.com/user/baalajimaestro" }, + { twitter = "https://twitter.com/baalajimaestro" }, + { matrix = "https://matrix.to/#/@baalajimaestro:matrix.org" }, + { email = "mailto:me@baalajimaestro.me" }, + ] \ No newline at end of file diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..09c51ba --- /dev/null +++ b/config/_default/markup.toml @@ -0,0 +1,9 @@ +# -- Markup -- +# These settings are required for the theme to function. + +[goldmark] +[goldmark.renderer] + unsafe = true + +[highlight] + noClasses = false \ No newline at end of file diff --git a/config/_default/menus.toml b/config/_default/menus.toml new file mode 100644 index 0000000..6521cae --- /dev/null +++ b/config/_default/menus.toml @@ -0,0 +1,26 @@ +# -- 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]] + name = "About" + pageRef = "about" + weight = 10 + +[[main]] + name = "Blog" + pageRef = "posts" + weight = 20 + +[[main]] + name = "Contact" + pageRef = "contact" + weight = 30 diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..bd56257 --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,46 @@ +# -- 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 = "congo" +# logo = "images/logo.png" +description = "baalajimaestro's personal website" +# mainSections = ["section1", "section2"] +# robots = "" + +[homepage] + layout = "profile" # valid options: page, profile, custom + showRecent = false + +[article] + showDate = true + dateFormat = "2 January 2006" + showAuthor = true + showBreadcrumbs = false + showDraftLabel = true + showEdit = true + editURL = "https://github.com/baalajimaestro/personal-website/" + editAppendPath = true + showHeadingAnchors = true + showPagination = true + showReadingTime = true + sharingLinks = ["facebook", "twitter", "reddit", "linkedin", "email"] + +[list] + showBreadcrumbs = false + groupByYear = true + +[taxonomy] + showTermCount = true + +[sitemap] + excludedKinds = ["taxonomy", "term"] + +[fathomAnalytics] + # site = "ABC12345" + # domain = "llama.yoursite.com" + +[verification] \ No newline at end of file