about summary refs log tree commit diff
path: root/blog/config.toml
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·27+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·27+0000
commitd206a2812fc07e9ae8af016d3dc9d24a8bcf0508 (patch)
treefd5ddddb62457a5f5b5e67f68c5156dcecee7da6 /blog/config.toml
parent2e0ad09a0275dd11e0e8b3db1cbd04e72b9d196c (diff)
Prefer hugo for blog.wpcarro.dev
Instead of creating my own static website generator, I'm trying Hugo. Huge is a
newer alternative to Jekyll. So far, I like what I see.

- Ignoring /blog/public since this is where `huge -D` generates the static
  assets.
- Using a TailwindCSS theme.
- Creating a dumby post about Emacs to test deployments.
- Deleting all Common Lisp and Nix code that powered my previous, half-baked
  blog.
Diffstat (limited to 'blog/config.toml')
-rw-r--r--blog/config.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/blog/config.toml b/blog/config.toml
new file mode 100644
index 000000000000..de67cf19cc69
--- /dev/null
+++ b/blog/config.toml
@@ -0,0 +1,25 @@
+baseURL = "https://blog.wpcarro.dev"
+disqusShortname = "wpcarro"
+languageCode = "en-us"
+title = "blog.wpcarro.dev"
+theme = "tailwind"
+pygmentsCodeFences = true
+pygmentsUseClasses = true
+
+[taxonomies]
+    tag = "tags"
+
+[permalinks]
+    posts = "/posts/:year/:month/:title/"
+
+[params]
+    author = "William Carroll"
+    description = "Loosely structured streams of consciousness"
+    tagline = "Loosely structured streams of consciousness"
+
+[languages]
+    [languages.en]
+        contentDir = "content/english"
+        languageCode = "en-us"
+        languageName = "English"
+        weight = 1
\ No newline at end of file