中文网址:https://hugo.opendocs.io/zh-cn/installation/windows/
参考:https://cuttontail.blog/blog/create-a-wesite-using-github-pages-and-hugo/
目标:将网站部署到 github.io上
如果您是Windows用户:
不要使用命令提示符
不要使用 Windows PowerShell
请在 PowerShell 或 Linux 终端(如WSL或Git Bash)中运行这些命令
PowerShell 和 Windows PowerShell 是不同的应用程序。
需要两个github库,一个是网站的所有代码;一个只是展示在github.io上的代码;
创建github仓库时要 点击 public 与 Add a README file
<username.github.io>
git clone https://github.com/xiexie/allcoode.git #clone 所有代码到本地
cd allcode
hugo new site allcode-blog
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml
hugo server
添加网站内容
hugo new content/posts/my-first-post.md
# 在md文件中修改如下
---
title: "我的第一篇文章"
date: 2022-11-20T09:03:20-08:00
draft: false
---
## 简介
这是 **粗体** 文本,这是 *斜体* 文本。
访问 [Hugo](https://gohugo.io) 网站!
# 启动
hugo server
#
使用编辑器打开项目根目录下的 网站配置 文件(hugo.toml)。
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = '我的新 Hugo 网站'
theme = 'ananke'
进行以下更改:
为您的生产网站设置 baseURL。该值必须以协议开头,并以斜杠结尾,如上所示。
将 languageCode 设置为您的语言和地区。
为您的生产网站设置 title。
启动 Hugo 的开发服务器以查看您的更改,记得包含草稿