Devlix is a small Hugo theme for a personal site with a blog. This page gets you from nothing to a running site.

Requirements

  • Hugo extended, v0.116.0 or newer.

Install

Add Devlix as a submodule of your Hugo site:

git submodule add https://github.com/mhd64real/hugo-theme-devlix themes/devlix

Then point your config at it:

theme = 'devlix'

Minimum config

A working hugo.toml needs very little:

baseURL  = 'https://example.com/'
title    = 'Your Name'
theme    = 'devlix'
uglyURLs = true

[params.profile]
  name  = 'Your Name'
  photo = '/img/me.jpg'
  roles = ['What you do']

  [[params.profile.links]]
    text = 'you@example.com'
    url  = 'mailto:you@example.com'

Run it

hugo server -D

Open http://localhost:1313. That is the whole loop: edit, save, the browser reloads.

Next: see Configuration for every option, then Writing Content.