diff options
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" |