From 386a69ae2612e07bc963bb14cd9ec57414391ae1 Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Tue, 11 Feb 2020 22:53:02 +0100 Subject: Fixes for theme submission --- exampleSite/config.toml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 exampleSite/config.toml (limited to 'exampleSite/config.toml') diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..77309c0 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,57 @@ +baseurl = "https://example.com/" +languageCode = "en" +title = "Soho Theme" +DefaultContentLanguage = "en" +enableInlineShortcodes = true +summarylength = 10 +enableEmoji = true + +[params] +description = "" +# gravatar = "soho@example.com" +profilePicture = "images/profile.png" +copyright = "Author Name" +license = "CC BY-SA 4.0" +licenseURL = "https://creativecommons.org/licenses/by-sa/4.0" + + [[params.socialIcons]] + icon = "fa-linkedin" + title = "Linkedin" + url = "#" + + [[params.socialIcons]] + icon = "fa-github" + title = "GitHub" + url = "#" + + [[params.socialIcons]] + icon = "fa-twitter" + title = "Twitter" + url = "#" + +[menu] + + [[menu.main]] + name = "Posts" + weight = 100 + identifier = "posts" + url = "/posts/" + + [[menu.main]] + name = "About" + identifier = "about" + weight = 300 + url = "/about/" + +[markup] + + [markup.highlight] + codeFences = true + guessSyntax = false + hl_Lines = "" + lineNoStart = 1 + lineNos = false + lineNumbersInTable = true + noClasses = true + style = "monokai" + tabWidth = 4 -- cgit v1.2.1