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

60 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 'Hello World'
isCJKLanguage: false
author: 'Author of the article'
lastmod: '2022-06-02T11:52:03+08:00'
publishDate: '2022-06-02T11:52:03+08:00'
categories:
- Blog
tags:
- Hugo
- Startup
toc: false
draft: true
url: 'hello-world.html'
---
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!