about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/themes/tailwind/readme.md
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-12-27T13·38-0400
committerclbot <clbot@tvl.fyi>2021-12-27T14·01+0000
commitbb72d16cce4b2cee6a31f0aa3fdcf5cad8890de9 (patch)
treee16feb33c6107ff60ccf10bb856cd837c5806358 /users/wpcarro/website/blog/themes/tailwind/readme.md
parent21e1ae3e69a0d019c5792ebb463877bd98c1d161 (diff)
refactor(wpcarro/blog): Prefer depot.web.blog r/3465
Hugo is a bit too heavyweight for my taste.

Change-Id: I331bc5898bd40f1a03bbde8ad69fe3cc9f72c18b
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4704
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/website/blog/themes/tailwind/readme.md')
-rw-r--r--users/wpcarro/website/blog/themes/tailwind/readme.md62
1 files changed, 0 insertions, 62 deletions
diff --git a/users/wpcarro/website/blog/themes/tailwind/readme.md b/users/wpcarro/website/blog/themes/tailwind/readme.md
deleted file mode 100644
index cdb69a619730..000000000000
--- a/users/wpcarro/website/blog/themes/tailwind/readme.md
+++ /dev/null
@@ -1,62 +0,0 @@
-# TailwindCSS Journal
-
-_TailwindCSS Journal_ is a minimalist theme for [Hugo](https://gohugo.io) using [TailwindCSS](https://tailwindcss.com).
-
-Based on [Journal](https://dashdashzako.github.io/hugo-journal-demo/), it also focuses on improving reading experience with no fancy effect.
-
-It uses [Chroma](https://gohugo.io/content-management/syntax-highlighting/) for the syntaxic coloration of code snippets.
-
-Demo is available [here](https://ianrodrigues.github.io/hugo-tailwind-journal-demo/).
-
-## Installation
-
-Please refer to the [Hugo documentation](https://gohugo.io/themes/installing/).
-
-## Configuration
-
-A few parameters should be adjusted in the site config:
-
-```toml
-baseURL = "https://username.github.io/"
-disqusShortname = "username"
-googleAnalytics = "UA-XXXXXXXXX-X"
-title = "Tailwind Journal"
-theme = "hugo-tailwind-journal"
-pygmentsCodeFences = true
-pygmentsUseClasses = true
-
-[taxonomies]
-    tag = "tags"
-
-[permalinks]
-    posts = "/posts/:year/:month/:title/"
-
-[params]
-    author = "John Doe"
-    avatar = "images/avatar.jpg"
-    description = "A minimalist journal template for Hugo using TailwindCSS."
-    tagline = "A minimalist journal template for Hugo using TailwindCSS."
-
-[languages]
-    [languages.en]
-        contentDir = "content/english"
-        languageCode = "en-us"
-        languageName = "🇺🇸 English"
-        weight = 1
-
-    [languages.pt-br]
-        contentDir = "content/portuguese"
-        description = "Um template minimalista para Hugo usando TailwindCSS."
-        languageCode = "pt-br"
-        languageName = "🇧🇷 Português"
-        tagline = "Um template minimalista para Hugo usando TailwindCSS."
-        weight = 2
-
-    [languages.de]
-        contentDir = "content/german"
-        description = "Eine minimalistische Journalvorlage für Hugo mit TailwindCSS."
-        languageCode = "de"
-        languageName = "🇩🇪 Deutsch"
-        tagline = "Eine minimalistische Journalvorlage für Hugo mit TailwindCSS."
-        weight = 3
-```