2022-05-21 17:47:26 +08:00
|
|
|
|
---
|
2022-06-03 22:37:33 +08:00
|
|
|
|
title: "世界,你好!"
|
|
|
|
|
description: "快速的描述下有关于 Hugo 建站的基本用法。"
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
lastmod: 2022-06-03T16:43:23+08:00
|
2022-06-08 14:51:30 +08:00
|
|
|
|
date: 2022-06-02T11:52:03+08:00
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
|
|
categories:
|
2023-06-24 11:08:17 +08:00
|
|
|
|
- 开始建站
|
|
|
|
|
|
2022-05-21 17:47:26 +08:00
|
|
|
|
tags:
|
2023-06-24 11:08:17 +08:00
|
|
|
|
- Hugo
|
|
|
|
|
- 开始
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2024-07-21 11:51:35 +08:00
|
|
|
|
url: demo/hello-world.html
|
2022-09-29 10:24:41 +08:00
|
|
|
|
toc: true
|
2022-06-08 14:51:30 +08:00
|
|
|
|
weight: 2
|
2022-05-21 17:47:26 +08:00
|
|
|
|
---
|
|
|
|
|
|
2022-06-04 10:43:00 +08:00
|
|
|
|
> “使用 `weight` 关键字置顶文章。”
|
2022-06-01 17:06:27 +08:00
|
|
|
|
|
2022-06-04 10:43:00 +08:00
|
|
|
|
[Hugo](https://gohugo.io/) 是现今世界上最快的网站建设框架,也是最流行的开源静态站点生成器之一。 凭借其惊人的速度和灵活性,Hugo 让建设网站再次变得有趣起来。
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-01 17:06:27 +08:00
|
|
|
|
<!--more-->
|
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
## 快速开始
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
### 发表新文章
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
$ hugo new hello-world.md
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
更多信息:[内容格式](https://gohugo.io/content-management/formats/)
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
### 启动服务
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
$ hugo server
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
更多信息:[Hugo 服务命令行](https://gohugo.io/commands/hugo_server/)
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
### 生成静态文件
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
$ hugo
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
更多信息:[Hugo 建站](https://gohugo.io/commands/hugo/)
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
### 部署到服务器
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
|
|
|
|
```language
|
|
|
|
|
$ hugo deploy
|
|
|
|
|
```
|
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
更多信息:[Hugo 发布](https://gohugo.io/commands/hugo_deploy/)
|
2022-05-21 17:47:26 +08:00
|
|
|
|
|
2022-06-03 22:37:33 +08:00
|
|
|
|
祝你好运,相信你会喜欢上 Hugo 建站的旅程!
|