Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shreshthmohan/minimalist-hugo-tailwind
A minimalist Hugo theme made with TailwindCSS
https://github.com/shreshthmohan/minimalist-hugo-tailwind
Last synced: 29 days ago
JSON representation
A minimalist Hugo theme made with TailwindCSS
- Host: GitHub
- URL: https://github.com/shreshthmohan/minimalist-hugo-tailwind
- Owner: shreshthmohan
- Created: 2020-07-16T03:10:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T06:06:36.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T20:36:13.332Z (about 1 month ago)
- Language: HTML
- Size: 1.42 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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/).
Useful commands:
hugo gen chromastyles monokailight > static/css/chroma.monokailight.css
## 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
```