diff options
author | Dante Catalfamo | 2020-06-16 16:07:53 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-06-16 16:07:53 -0400 |
commit | 781646b1401dc3872b1c4b40c10090f496f19108 (patch) | |
tree | 51e2040fb7deeccb87e39ab9818348d767062f5c /config.toml | |
parent | 0e35a08bdead17efc06a58c2696e3874e7591e38 (diff) | |
download | blog-781646b1401dc3872b1c4b40c10090f496f19108.tar.gz blog-781646b1401dc3872b1c4b40c10090f496f19108.tar.bz2 blog-781646b1401dc3872b1c4b40c10090f496f19108.zip |
Update config.toml
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 48 |
1 files changed, 45 insertions, 3 deletions
diff --git a/config.toml b/config.toml index 52f63a4..3878427 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,46 @@ -baseURL = "https://lambda.cx/" -languageCode = "en-us" -title = "Dante Catalfamo's Blog" +baseURL = "https://lambda.cx/blog/" +title = "Dante's Blog" + theme = "fuji" + +languageCode = "en-us" +enableRobotsTXT = true + +[params] + author = "Dante Catalfamo" + subTitle = "Putting my notes online" + showWordCounter = false + showReadTime = false + showToc = true + + # License at the end of each post + showLicense = false + license = "CC BY-NC-SA 4.0" + licenseLink = "http://creativecommons.org/licenses/by-nc-sa/4.0/" + + # Open Graph & Twitter Card variables + # You can also set description and images in post front matter individually + # description = "Dante Catalfamo's personal tech blog." + # images = ["img/og.png"] # This will use the image called og.png in static/img folder + + # Posts shown in homepage + mainSections = ["posts"] + +[menu] + [[menu.nav]] + name = "Home" + url = "/" + weight = 1 + [[menu.nav]] + name = "Archives" + url = "/archives/" + weight = 2 + [[menu.nav]] + name = "About" + url = "/about/" + weight = 3 + + [[menu.link]] + name = "GitHub" + url = "https://github.com/dantecatalfamo" + weight = 1 |