My first Hugo post
Below is installing and creating a hugo site with theme=fluency with operations like: hugo new site sonictl.github.io cd sonictl.github.io git submodule add https://github.com/wayjam/hugo-theme-fluency.git themes/fluency echo "theme = 'fluency'" >> hugo.toml hugo server by following this https://gohugo.io/getting-started/quick-start/ add blog content: **directly add a .md file in content/posts ** or ask hugo to creat one post: hugo new posts/my-first-post.md this create a new file under content/posts Note the draft value in the front matter of your post. if its value == true, You can run either of the following commands to include draft content.
…