Complete Guide to Hugo
This guide is comprehensive, so we’ve organized it into collapsible sections.
First, install Hugo Extended:
sudo apt install hugoThen create your site:
hugo new site my-blog
cd my-blogEdit your config.toml:
baseURL = "https://example.com/"
title = "My Blog"Create your first post:
hugo new posts/my-first-post.mdTags:
Loading comments...