HUGO blog theme by @JeffProd

A free blog theme for HUGO, with tags, archives, last posts... Using Bulma CSS framework.

Install

Install HUGO then :

hugo new site myblog
cd myblog
git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod

In the file config.toml add the lines :

theme = "jeffprod"

[permalinks]
    post = "/:year/:filename"

[taxonomies]
    tag = "tags"
    archive = "archives"

Write blog posts

hugo new post/my-first-post.md

And edit this new file content/post/my-first-post.md. You can use HUGO shortcodes and Markdown.

Render

hugo server

Then go to <http://localhost:1313>

Create the web site

hugo

All files to publish are in public/ directory.

GitHub