diff options
| author | Alexandre Vicenzi <vicenzi.alexandre@gmail.com> | 2020-05-25 22:56:14 +0200 |
|---|---|---|
| committer | Alexandre Vicenzi <vicenzi.alexandre@gmail.com> | 2020-05-25 22:56:14 +0200 |
| commit | 2451347ebcb0716252e9f2875dc3eed29cf98691 (patch) | |
| tree | bb110983e9ad55e46b71afae3eff0bdcfb22fd62 /exampleSite/config.toml | |
| parent | 967d8ae4e6fcd229bc3c76e012118b48a978f0dd (diff) | |
Update example site
Diffstat (limited to 'exampleSite/config.toml')
| -rw-r--r-- | exampleSite/config.toml | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml index ac2ae42..be175ac 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -5,15 +5,19 @@ DefaultContentLanguage = "en" enableInlineShortcodes = true summarylength = 10 enableEmoji = true +paginate = 5 [params] -description = "" +title = "Soho Theme" +description = "Example Blog" # gravatar = "soho@example.com" +images = ["images/profile.png"] profilePicture = "images/profile.png" copyright = "Author Name" license = "CC BY-SA 4.0" licenseURL = "https://creativecommons.org/licenses/by-sa/4.0" builtWith = true +mainSections = ["post"] [[params.socialIcons]] icon = "fa-linkedin" @@ -23,13 +27,18 @@ builtWith = true [[params.socialIcons]] icon = "fa-github" title = "GitHub" - url = "#" + url = "https://github.com/alexandrevicenzi/soho" [[params.socialIcons]] icon = "fa-twitter" title = "Twitter" url = "#" +[taxonomies] + series = "series" + category = "categories" + tag = "tags" + [menu] [[menu.main]] @@ -39,11 +48,29 @@ builtWith = true url = "/posts/" [[menu.main]] + name = "Categories" + weight = 200 + identifier = "categories" + url = "/categories/" + + [[menu.main]] + name = "Tags" + weight = 200 + identifier = "tags" + url = "/tags/" + + [[menu.main]] name = "About" identifier = "about" - weight = 300 + weight = 10 url = "/about/" + [[menu.main]] + name = "Contact" + identifier = "contact" + weight = 20 + url = "/contact/" + [markup] [markup.highlight] |
