My First Post
Introduction
This is bold text, and this is emphasized text.
Visit the Hugo website!
How to create this site
-
Download hugo and git
-
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
- Add content:
hugo new posts/my-first-post.md
vim content/posts/my-first-post.md
- Edit the config file: Example Site
vim config.toml
- Build the new content:
hugo server --buildDrafts
hugo server -D
- Publish:
hugo
- You’re done! Congrats on completing your first introduction to hugo!!