Introduction

This is bold text, and this is emphasized text.

Visit the Hugo website!

How to create this site

  1. Download hugo and git

  2. Type the commands:

hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/rhazdon/hugo-theme-hello-friend-ng
echo "theme = 'hello-friend-ng'" >> config.toml
hugo server
  1. Add content:
hugo new posts/my-first-post.md
vim content/posts/my-first-post.md
  1. Edit the config file: Example Site
vim config.toml
  1. Build the new content:
hugo server --buildDrafts
hugo server -D
  1. Publish:
hugo
  1. You’re done! Congrats on completing your first introduction to hugo!!