Quick Start
Install Hugo Extended
FortyTen requires Hugo Extended (v0.140.2+) for Tailwind CSS support. Download it from hugo.io.
macOS (Homebrew):
brew install hugo
Windows (Chocolatey):
choco install hugo-extended
Linux:
snap install hugo --channel=extended
Verify installation:
hugo version
Install Tailwind CSS CLI
About Tailwind CLI: The simplest and fastest way to get up and running with Tailwind CSS from scratch is with the Tailwind CLI tool. The CLI is also available as a standalone executable if you want to use it without installing Node.js.
Using npx (no installation required):
npx @tailwindcss/cli --help
For faster builds (install locally):
npm install -D tailwindcss @tailwindcss/cli @tailwindcss/typography
npx tailwindcss --help
Note: Hugo’s
css.TailwindCSSfunction requires the Tailwind CLI binary. Usingnpxdownloads it on first run.
Create a New Site
hugo new site my-blog
cd my-blog
Add FortyTen Theme
Add FortyTen as a Git submodule:
git init
git submodule add https://github.com/marcelorodrigo/hugo-fortyten.git themes/fortyten
Or clone directly:
git clone https://github.com/marcelorodrigo/hugo-fortyten.git themes/fortyten
Start the Hugo Server
hugo server
Visit http://localhost:1313 to preview your site.
Build Static Pages
Generate production-ready HTML:
hugo --minify
Output will be in the public/ directory.
Deployment
Deploy to GitHub Pages
Follow the GitHub Pages deployment guide to set up automatic builds with GitHub Actions.
Create .github/workflows/hugo.yaml:
name: Build and Deploy Hugo Site
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '25'
- name: Install npm dependencies
run: npm ci
- name: Setup Hugo
uses: peaceiris/actions-hugo@v4
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
Run the exampleSite
To test FortyTen with the included example site:
cd exampleSite
hugo server
Or from the root directory:
hugo --themesDir=../.. server --source exampleSite
Visit http://localhost:1313 to see the theme in action!