diff options
author | Leonardo Santiago <[email protected]> | 2024-06-01 17:30:03 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-06-01 17:30:03 -0300 |
commit | 2ddbc2b056af0585b905606a2c6887d43f9c3b01 (patch) | |
tree | bfe1531d2cb9e5728c3d7038f2c086616efd539c /hugo.toml | |
parent | 735b245871d94cb6ace8913cd1370b02b5aeb28b (diff) |
localize bearblog, update some UI
Diffstat (limited to 'hugo.toml')
-rw-r--r-- | hugo.toml | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -6,24 +6,26 @@ baseURL = "https://o-santi.github.com" theme = 'hugo-bearblog' # Basic metadata configuration for your blog. -title = "lowestcase" +title = "lowest case" author = "leonardo santiago" languageCode = "en-US" # Generate a nice robots.txt for SEO enableRobotsTXT = true staticDir = [ "static" ] +titleCaseStyle = 'none' +pluralizeListTitles = false # Generate "Bearblog"-like URLs !only!, see https://bearblog.dev/. disableKinds = ["taxonomy"] ignoreErrors = ["error-disable-taxonomy"] [permalinks] - blog = "/:slug/" - tags = "/blog/:slug" + blog = "/blog/:slug" + tags = "/tags/:slug" [params] # The "description" of your website. This is used in the meta data of your generated html. - description = "a lowercase only blog" + description = "a lowercase only blog, purely for aesthetics" # The path to your "favicon". This should be a square (at least 32px x 32px) png-file. # Hint: It's good practise to also put a "favicon.ico"-file into your "static"-folder. @@ -38,7 +40,7 @@ ignoreErrors = ["error-disable-taxonomy"] # Another "title" :-). This one is used as the site_name on the Hugo's internal # opengraph structured data template. # See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph. - title = "lowestcase" + title = "lowest case" # This theme will, by default, inject a made-with-line at the bottom of the page. # You can turn it off, but we would really appreciate if you don’t :-). @@ -49,4 +51,4 @@ ignoreErrors = ["error-disable-taxonomy"] # file. See [Hugo's Format function docs](https://gohugo.io/functions/format/) # for details. An example TOML config that uses [ISO # 8601](https://en.wikipedia.org/wiki/ISO_8601) format: - dateFormat = "02-01-2006" + dateFormat = "02 January, 2006" |