hugo-theme-next/exampleSite/content/post/hello-world.md

62 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: Hello World
description: 'Short description of the article.'
keywords: 'Key words'
isCJKLanguage: false
author: 'Author of the article'
lastmod: '2022-05-21T17:06:24+08:00'
publishDate: '2022-05-21T16:06:24+08:00'
weight: 1
categories:
- Blog
tags:
- Hugo
- Startup
toc: false
draft: false
---
The worlds fastest framework for building websites.
[Hugo](https://gohugo.io/) is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites fun again.
<!--more-->
## Quick Start
### Create a new post
```shell
$ hugo new hello-world.md
```
More info: [Content's Formats](https://gohugo.io/content-management/formats/)
### Run server
```shell
$ hugo server
```
More info: [Hugo Server CLI](https://gohugo.io/commands/hugo_server/)
### Generate static files
```shell
$ hugo
```
More info: [Hugo Build Site](https://gohugo.io/commands/hugo/)
### Deploy to remote sites
```language
$ hugo deploy
```
More info: [Hugo Deployment](https://gohugo.io/commands/hugo_deploy/)
See you will enjoy the Hugo journey and good luck for you!