summaryrefslogtreecommitdiffhomepage
path: root/hugo.toml
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2024-06-01 15:25:15 -0300
committerLeonardo Santiago <[email protected]>2024-06-01 15:25:15 -0300
commit735b245871d94cb6ace8913cd1370b02b5aeb28b (patch)
tree10d9e97d553a5059513a34a5f2b09ae8e9a0dab0 /hugo.toml
parent31bc6a2f54d86a4978be063f5e614881c625c597 (diff)
remove old theme, use bearblog theme instead
Diffstat (limited to 'hugo.toml')
-rw-r--r--hugo.toml52
1 files changed, 52 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml
new file mode 100644
index 0000000..d56797d
--- /dev/null
+++ b/hugo.toml
@@ -0,0 +1,52 @@
+# Base URL used when generating links to your pages
+# Set to the URL for your site
+baseURL = "https://o-santi.github.com"
+
+# The name of this wonderful theme ;-).
+theme = 'hugo-bearblog'
+
+# Basic metadata configuration for your blog.
+title = "lowestcase"
+author = "leonardo santiago"
+languageCode = "en-US"
+
+# Generate a nice robots.txt for SEO
+enableRobotsTXT = true
+staticDir = [ "static" ]
+
+# Generate "Bearblog"-like URLs !only!, see https://bearblog.dev/.
+disableKinds = ["taxonomy"]
+ignoreErrors = ["error-disable-taxonomy"]
+[permalinks]
+ blog = "/:slug/"
+ tags = "/blog/:slug"
+
+[params]
+ # The "description" of your website. This is used in the meta data of your generated html.
+ description = "a lowercase only blog"
+
+ # 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.
+ # favicon = "images/favicon.png"
+
+ # These "images" are used for the structured data templates. This will show up, when
+ # services like Twitter or Slack want to generate a preview of a link to your site.
+ # See https://gohugo.io/templates/internal#twitter-cards and
+ # https://gohugo.io/templates/internal#open-graph.
+ # images = ["images/share.png"]
+
+ # 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"
+
+ # 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 :-).
+ hideMadeWithLine = true
+
+ # By default, this theme displays dates with a format like "02 Jan, 2006", but
+ # you can customize it by setting the `dateFormat` param in your site's config
+ # 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"