59 lines
1.0 KiB
Markdown
59 lines
1.0 KiB
Markdown
![]() |
---
|
||
|
title: 'Hugo blog Hello World'
|
||
|
description: 'Short description of the article.'
|
||
|
keywords: 'Key words'
|
||
|
isCJKLanguage: true
|
||
|
|
||
|
author: 'Author of the article'
|
||
|
lastmod: '2022-05-21T17:06:24+08:00'
|
||
|
publishDate: '2022-05-21T17:06:24+08:00'
|
||
|
weight: 1
|
||
|
|
||
|
categories:
|
||
|
-
|
||
|
tags:
|
||
|
-
|
||
|
-
|
||
|
|
||
|
toc: false
|
||
|
draft: true
|
||
|
url: 'hello_world.html'
|
||
|
---
|
||
|
|
||
|
[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.
|
||
|
|
||
|
## 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!
|