Minimalist Hugo theme for reading.
- Install Hugo https://gohugo.io/getting-started/quick-start/
- Clone or download this theme into the
themes
directory - Update your
config.toml
file to point to the theme
theme = "smoooooth"
- Start the server with `hugo server``
- Go to http://localhost:1313
baseURL = "https://example.com/"
languageCode = "en-gb"
title = "Example"
theme = "smoooooth"
[taxonomies]
tag = "tags"
# The value of pre is the icon name in https://feathericons.com/
[menu]
[[menu.main]]
name = "Home"
pre = "home"
url = "/"
weight = 1
[[menu.main]]
name = "Blog"
pre = "edit"
url = "/blog/"
weight = 2
[[menu.main]]
name = "Tags"
pre = "tag"
url = "/tags/"
weight = 3
[params]
dateFormat = "Jan 2, 2006"
authorName = "Luke Yao"