Hugo Tailwind starter

Very basic Hugo + Tailwind CSS starter theme

This is a starter template for creating a custom Hugo theme. It comes pre-configured with Tailwind CSS, so you don’t have to set it up yourself. Ideal for developers building their own Hugo theme with Tailwind CSS.

Features

File Structure

hugo-tailwind-starter
|
│    .gitignore
│    .prettierrc
│    go.mod
│    hugo.toml
│    LICENSE
│    package-lock.json
│    package.json
|    postcss.config.js
│    README.md
|    tailwind.config.js
|    theme.toml
|    public/
|
├─── static
|    └─── banner.png
|
├─── assets
|    └─── css
|         └─── index.css
|         └─── main.css
|
├─── content
|    └─── _index.md
|
├─── layouts
|    ├─── 404.html
|    └─── _default
|         └─── baseof.html
|         └─── home.html
|    └─── partials
|         ├─── footer.html
|         ├─── head.html
|         ├─── header.html
|         └─── head
|              └─── css.html

Guideline for developers

Installation:

git clone https://github.com/aidil-sekandar/hugo-tailwind-starter.git

Files explanation:

Getting Started 🚀