配置文件

配置文件

Hugo 从 Hugo 网站根目录下的 hugo.yaml 读取配置。 在配置文件中,您可以配置站点的所有选项。 你可以在 exampleSite/hugo.yaml 中找到此站点的配置文件作为开始。

导航栏

菜单

右上角的菜单在配置文件的 menu.main 中配置:

hugo.yaml
menu:
  main:
    - name: Docs
      pageRef: /docs
      weight: 1
    - name: Blog
      pageRef: /blog
      weight: 2
    - name: About
      pageRef: /about
      weight: 3
    - name: Search
      weight: 4
      params:
        type: search
    - name: GitHub
      weight: 5
      url: "https://github.com/imfing/hextra"
      params:
        icon: github

有几种不同类型的菜单项:

  1. Link to a page in the site with pageRef
    - name: Docs
      pageRef: /docs
  2. Link to an external URL with url
    - name: GitHub
      url: "https://github.com"
  3. Search bar with type: search
    - name: Search
      params:
        type: search
  4. Icon
    - name: GitHub
      params:
        icon: github

这些菜单项可以通过设置 weight 进行排序。

侧边栏

主侧边栏

主侧边栏是自动从 content 目录结构生成的。 有关更多详细信息,转至 目录结构

额外链接

侧边栏的额外链接在配置文件的 menu.sidebar 部分中配置:

hugo.yaml
menu:
  sidebar:
    - name: More
      params:
        type: separator
      weight: 1
    - name: "About"
      pageRef: "/about"
      weight: 2
    - name: "Hugo Docs ↗"
      url: "https://gohugo.io/documentation/"
      weight: 3

右侧边栏

目录

目录是根据内容文件中的标题自动生成的,可以在 front matter 设置 toc:false 来禁用它。

content/docs/guide/configuration.md
---
title: Configuration
toc: false
---

编辑此页链接

要配置编辑此页链接,我们可以在配置文件中设置 params.editURL.base

hugo.yaml
params:
  editURL:
    base: "https://github.com/your-username/your-repo/edit/main"

将为每个页面自动生成编辑链接。 如需为特定页面设置编辑链接,可以在页面的 front matter 中设置 editURL

content/docs/guide/configuration.md
---
title: Configuration
editURL: "https://example.com/edit/this/page"
---

Footer

版权声明

如需修改网站页脚中显示的版权文本,您需要创建一个名为“i18n/en.yaml”的文件。 在此文件中,填写新的版权文本,像这样:

i18n/en.yaml
copyright: "© 2023 YOUR TEXT HERE"

你可以在 GitHub 存储库中找到示例 i18n/en.yaml 文件。另外,你可以在版权文本中使用 Markdown 格式。

其他

Favicon

如需自定义 favicon,请将图标文件放在 static 文件夹下以覆盖 主题中的默认 favicon

    • 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
  • 在您的项目中包含 favicon.icofavicon.svg 文件,以确保网站的网站图标正确显示。

    虽然 favicon.ico 通常适用于较旧的浏览器,但 favicon.svg 受到现代浏览器的支持,所以更现代的做法是添加 favicon-dark.svg 以便在黑暗模式下提供较好的体验体验。

    请随意使用 favicon.iofavycon 等工具来生成这些图标。

    颜色主题配置

    使用theme设置来配置默认主题模式和切换按钮,允许访问者在浅色或深色模式之间切换。

    hugo.yaml
    params:
      theme:
        # light | dark | system
        default: system
        displayToggle: true

    theme.default 的可选项:

    • light - 仅使用浅色模式
    • dark - 仅使用神色模式
    • system - 跟随系统

    theme.displayToggle 控制显示用于更改主题的切换按钮。 当设置为“true”时,访问者可以在浅色或深色模式之间切换,覆盖默认设置。

    页宽

    页面的宽度可以通过配置文件中的params.page.width参数来调整:

    hugo.yaml
    params:
      page:
        # full (100%), wide (90rem), normal (1280px)
        width: wide

    有三个可选项:full, wide, and normal. 默认的页宽模式是 normal.

    同样的,导航栏和 footer 的宽度也可通过 params.navbar.widthparams.footer.width 调整。

    搜索

    默认情况下启用由 FlexSearch 提供全文搜索。 要自定义搜索索引,请在配置文件中设置 params.search.flexsearch.index

    hugo.yaml
    params:
      # Search
      search:
        enable: true
        type: flexsearch
    
        flexsearch:
          # index page by: content | summary | heading | title
          index: content

    flexsearch.index 的可选项:

    • content - 全内容搜索
    • summary - 概述 Hugo Content Summaries
    • heading - 一级和二级标题
    • title - 仅搜索标题

    要从搜索索引中排除页面,更改 front matter 中的 excludeSearch: true:

    content/docs/guide/configuration.md
    ---
    title: Configuration
    excludeSearch: true
    ---

    Google Analytics

    要启用 Google Analytics,设置 services.googleAnalytics.ID:

    hugo.yaml
    services:
      googleAnalytics:
        ID: G-MEASUREMENT_ID
    最后更新于