title: hugo网站搭建 description: 使用 Hugo搭建网站(Theme Stack) slug: hugoWebTest date: 2023-09-05 00:00:00+0800 image: swwlz.png categories:
- techStudy
tags:
- go
- Hugo
weight: 1 # You can add weight to some posts to override the default sorting (date descending) comments: true
links:
go env -w CGO_ENABLED=1
go install -tags extended github.com/gohugoio/hugo@latest
如果出现gcc报错,需要根据如下流程安装gcc
Repository name
那一栏,格式为<name>.github.io
。如果你想让你的博客网址就是.github.io
,则<name>
不能是任意名字,必须是你的github用户名。https://github.com/<name>/<name>.github.io
点击上方栏的Settings
,然后点击左方栏的Pages
,在Build and deployment
里的Source
中选择Github Actions
,在下面找到Hugo
,点击Configure
,在新界面点击右侧的绿色按钮的Commit changes...
。
找不到Hugo
就去browse all workflows
里找。content
文件夹加入md文件,然后执行在某一博的frontmatter中加入如下内容即可
links:
- title: GitHub
description: GitHub is the world's largest software development platform.
website: https://github.com
image: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
- title: TypeScript
description: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
website: https://www.typescriptlang.org
image: ts-logo-128.jpg
image
允许在线图片和本地图片,如果是本地图片,需要放在 static
文件夹下,然后使用相对路径引用。
两种方式
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css">
<script src="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js"></script>
<!-- or -->
<link rel="stylesheet" href="https://unpkg.com/gitalk/dist/gitalk.css">
<script src="https://unpkg.com/gitalk/dist/gitalk.min.js"></script>
npm i --save gitalk
import 'gitalk/dist/gitalk.css'
import Gitalk from 'gitalk'
首先,您需要选择一个公共github存储库(已存在或创建一个新的github存储库)用于存储评论,
然后需要创建 GitHub Application,如果没有 点击这里申请,Authorization callback URL
填写当前使用插件页面的域名。
最后, 您可以选择如下的其中一种方式应用到页面:
[comments.gitalk]
clientID = "id"
clientSecret = "cs"
repo = "lihan3238.github.io",//博客网站仓库名字
owner = "lihan3238",//github用户名
admin = ["lihan3238"],//github用户名(仓库有权写写入的人)
perpage = 10//每页多少个评论
pagerDirection = "last"//排序方式"last/first"
createIssueManually = true//管理员是否手动创建issue
distractionFreeMode = false//是否开启无干扰模式(cmd|ctrl+enter)自动发送评论
labels = "gitalk"//issue标签
id = "lihan3238.github.io"//页面唯一id
请联系 @[lihan3238] 初始化创建 ```