配置
Hugo 从站点根目录的 hugo.yaml
读取配置。
配置文件可用来调整站点的所有方面。
查看本网站的示例配置文件 exampleSite/hugo.yaml
以全面了解可用设置和最佳实践。
导航
菜单
右上角菜单在配置文件的 menu.main
部分定义:
menu:
main:
- name: 文档
pageRef: /docs
weight: 1
- name: 博客
pageRef: /blog
weight: 2
- name: 关于
pageRef: /about
weight: 3
- name: 搜索
weight: 4
params:
type: search
- name: GitHub
weight: 5
url: "https://github.com/imfing/hextra"
params:
icon: github
菜单项有以下几种类型:
- 通过
pageRef
链接到站内页面- name: 文档 pageRef: /docs
- 通过
url
链接到外部网址- name: GitHub url: "https://github.com"
- 搜索栏,使用
type: search
- name: 搜索 params: type: search
- 图标
- name: GitHub params: icon: github
通过设置 weight
参数可以调整菜单项的排序。
嵌套菜单
通过定义子菜单项可以创建下拉菜单。点击父菜单项时会显示子菜单。
menu:
main:
- identifier: sdk
name: SDK
- identifier: python
name: Python ↗
url: https://python.org
parent: sdk
- identifier: go
name: Go
url: https://go.dev
parent: sdk
子菜单项需要通过 parent
参数指定父菜单的 identifier
值。
徽标与标题
要修改默认徽标,编辑 hugo.yaml
并在 static
目录下添加徽标文件路径。
可选地,可以更改点击徽标时的跳转链接,以及设置徽标的像素宽度和高度。
params:
navbar:
displayTitle: true
displayLogo: true
logo:
path: images/logo.svg
dark: images/logo-dark.svg
link: /
width: 40
height: 20
侧边栏
主侧边栏
主侧边栏会根据内容目录结构自动生成。 详情参见文件组织页面。
要从左侧边栏排除单个页面,在页面的 front matter 中设置 sidebar.exclude
参数:
---
title: 配置
sidebar:
exclude: true
---
额外链接
侧边栏额外链接在配置文件的 menu.sidebar
部分定义:
menu:
sidebar:
- name: 更多
params:
type: separator
weight: 1
- name: "关于"
pageRef: "/about"
weight: 2
- name: "Hugo 文档 ↗"
url: "https://gohugo.io/documentation/"
weight: 3
右侧边栏
目录
目录会根据内容文件中的标题自动生成。可以通过在页面的 front matter 中设置 toc: false
来禁用。
---
title: 配置
toc: false
---
页面编辑链接
要配置页面编辑链接,可以在配置文件中设置 params.editURL.base
参数:
params:
editURL:
enable: true
base: "https://github.com/your-username/your-repo/edit/main"
编辑链接将基于提供的 URL 作为根目录自动为每个页面生成。
如果想为特定页面设置编辑链接,可以在页面的 front matter 中设置 editURL
参数:
---
title: 配置
editURL: "https://example.com/edit/this/page"
---
页脚
版权信息
要修改网站页脚显示的版权文本,需要创建一个名为 i18n/en.yaml
的文件。
在该文件中指定新的版权文本,如下所示:
copyright: "© 2024 你的文本内容"
可以参考 GitHub 仓库中的示例 i18n/en.yaml
文件。此外,可以在版权文本中使用 Markdown 格式。
其他
网站图标
要自定义网站的 favicon,将图标文件放在 static
文件夹下以覆盖主题默认的网站图标:
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon.png
- favicon-16x16.png
- favicon-32x32.png
- favicon-dark.svg
- favicon.ico
- favicon.svg
- site.webmanifest
基本设置
至少需要在 static
文件夹中包含 favicon.svg
。这将作为网站的默认图标。
可以通过在 SVG 文件中使用 CSS 媒体查询来创建自适应图标,响应系统主题偏好,具体方法参考构建自适应网站图标。
暗色模式支持
为了增强暗色模式支持,在 static
文件夹中添加 favicon-dark.svg
与 favicon.svg
一起。当两个文件都存在时,Hextra 会自动:
- 在亮色模式或未检测到主题偏好时使用
favicon.svg
- 当用户系统设置为暗色模式时切换到
favicon-dark.svg
- 尊重系统的
prefers-color-scheme
设置实现自动切换
暗色模式图标切换在所有现代浏览器中都有效,包括 Firefox,提供与网站主题一致的无缝体验。
其他格式
虽然 favicon.ico
通常用于旧版浏览器,现代浏览器支持 SVG 图标,因其可缩放性和小文件大小而更受青睐。
如果需要,可以使用 favicon.io 或 favycon 等工具生成其他格式的图标。
主题配置
使用 theme
设置来配置默认主题模式和切换按钮,允许访问者在亮色或暗色模式之间切换。
params:
theme:
# light | dark | system
default: system
displayToggle: true
theme.default
的选项:
light
- 始终使用亮色模式dark
- 始终使用暗色模式system
- 与操作系统设置同步(默认)
theme.displayToggle
参数允许显示主题切换按钮。
当设置为 true
时,访问者可以切换亮色或暗色模式,覆盖默认设置。
页面最后修改时间
可以通过启用 params.displayUpdatedDate
标志来显示页面的最后修改日期。要使用 Git 提交日期作为来源,还需启用 enableGitInfo
标志。
要自定义日期格式,设置 params.dateFormat
参数。其布局与 Hugo 的 time.Format
匹配。
# 解析 Git 提交
enableGitInfo: true
params:
# 显示最后修改日期
displayUpdatedDate: true
dateFormat: "2006年1月2日"
标签
要显示页面标签,在配置文件中设置以下标志:
params:
blog:
list:
displayTags: true
toc:
displayTags: true
页面宽度
页面宽度可以通过配置文件中的 params.page.width
参数自定义:
params:
page:
# full (100%), wide (90rem), normal (1280px)
width: wide
有三个可用选项:full
、wide
和 normal
。默认页面宽度为 normal
。
类似地,导航栏和页脚的宽度可以通过 params.navbar.width
和 params.footer.width
参数自定义。
FlexSearch 索引
默认启用由 FlexSearch 提供的全文搜索。
要自定义搜索索引,在配置文件中设置 params.search.flexsearch.index
参数:
params:
# 搜索
search:
enable: true
type: flexsearch
flexsearch:
# 索引页面方式: content | summary | heading | title
index: content
flexsearch.index
的选项:
content
- 页面的完整内容(默认)summary
- 页面摘要,详见 Hugo 内容摘要heading
- 一级和二级标题title
- 仅包含页面标题
要自定义搜索分词方式,在配置文件中设置 params.search.flexsearch.tokenize
参数:
params:
search:
# ...
flexsearch:
# full | forward | reverse | strict
tokenize: forward
flexsearch.tokenize
的选项:
strict
- 索引完整单词forward
- 正向逐步索引单词reverse
- 双向逐步索引单词full
- 索引所有可能的组合
要从 FlexSearch 搜索索引中排除页面,在页面的 front matter 中设置 excludeSearch: true
:
---
title: 配置
excludeSearch: true
---
Google 分析
要启用 Google Analytics,在 hugo.yaml
中设置 services.googleAnalytics.ID
标志:
services:
googleAnalytics:
ID: G-MEASUREMENT_ID
Google 搜索索引
要阻止 Google 搜索索引页面,在页面的 frontmatter 中设置 noindex
为 true:
title: 配置(存档版本)
params:
noindex: true
要排除整个目录,在父级 _index.md
文件中使用 cascade
键。
[!注意] 要阻止搜索引擎爬虫,可以制作
robots.txt
模板。 但是,robots.txt
指令不一定能阻止页面出现在 Google 搜索结果中。
LLMS.txt 支持
要为网站启用 llms.txt 输出格式,为大型语言模型和 AI 代理提供结构化文本大纲,在站点的 hugo.yaml
中添加 llms
输出格式:
outputs:
- home: [html]
+ home: [html, llms]
page: [html]
section: [html, rss]
这将在站点根目录生成一个 llms.txt
文件,包含:
- 站点标题和描述
- 所有章节和页面的层次结构列表
- 页面摘要和发布日期
- 所有内容的直接链接
llms.txt 文件根据内容结构自动生成,使 AI 工具和语言模型更容易获取上下文和参考。
Open Graph
要在页面中添加 Open Graph 元数据,在 frontmatter 的 params 中添加值。
由于一个页面可以有多个 image
和 video
标签,将它们的值放在数组中。
其他 Open Graph 属性只能有一个值。
例如,此页面有一个 og:image
标签(配置社交分享时的预览图片)和一个 og:audio
标签。
title: "配置"
params:
images:
- "/img/config-image.jpg"
audio: "config-talk.mp3"