在 FixIt 主题中展示你的 GitHub 项目并根据 README 自动生成博客文章。
简体中文 | 繁體中文 | English | Français | Русский язык | Español | हिन्दी | deutsch | 한국어 | しろうと- 支持 GitHub 项目卡片展示(
layout
或者shortcodes
) - 支持根据 README 自动生成博客文章(
content adapter
)
- FixIt v0.3.7 或更高版本
安装方法与 安装主题 相同。有几种安装方法,请选择一种。
首先确保你的项目本身是一个 Hugo 模块。
然后将此主题组件添加到你的 hugo.toml
配置文件中:
[module]
[[module.imports]]
path = "github.com/hugo-fixit/FixIt"
[[module.imports]]
path = "github.com/hugo-fixit/component-projects"
在第一次启动 Hugo 时,它将下载所需的文件。
要更新到模块的最新版本,请运行:
hugo mod get -u
hugo mod tidy
将 FixIt 和此 git 存储库克隆到你的主题文件夹中,并将其添加为网站目录的子模块。
git submodule add https://github.com/hugo-fixit/FixIt.git themes/FixIt
git submodule add https://github.com/hugo-fixit/component-projects.git themes/component-projects
接下来编辑项目的 hugo.toml
并将此主题组件添加到你的主题中:
theme = ["FixIt", "component-projects"]
最后,在 layouts/partials/custom.html
中的 custom-head
或 custom-assets
块内注入主题组件的样式:
{{- define "custom-assets" -}}
{{- partial "inject/component-projects.html" . -}}
{{- end -}}
获取仓库信息依赖 GitHub 官方 API。在开始使用之前,建议在 GitHub 上生成个人访问令牌,以防止 GitHub API 使用限制。
- 点击跳到 GitHub 生成 token,选择名为
public_repo
的范围以生成个人访问令牌。 - 配置环境变量
HUGO_PARAMS_GHTOKEN=your-person-access-token
,详细信息请参见 os.Getenv | Hugo
首先,创建 projects.yml
文件并编辑数据:
cp themes/component-projects/projects.yml.example data/projects.yml
如果你的网站是多语言的,你可以为英语创建一个
projects.en.yml
文件,为中文创建一个projects.zh-cn.yml
文件。
接下来,使用 projects
布局创建一个新页面:
hugo new projects/_index.md
编辑新页面的标题和内容:
---
title: My Projects
titleIcon: fa-solid fa-laptop-code
subtitle: <https://github.com/Lruihao>
sectionSlot: Some text to display in the section slot which is above the related articles list.
layout: projects
---
Some text to display at the start of the page.
在任何页面中使用 gh-repo-card-container
和 gh-repo-card
短代码来显示卡片式 GitHub 存储库:
{{< gh-repo-card-container >}}
{{< gh-repo-card repo="hugo-fixit/component-projects" >}}
{{< gh-repo-card repo="Lruihao/hugo-blog" >}}
{{< /gh-repo-card-container >}}
🎉 这是一个很棒的功能!它能够根据你配置的项目数据,把仓库的 README 自动生成博客文章。
在项目文件夹中创建 _content.gotmpl
,添加以下代码:
{{- partial "adapters/projects.html" . -}}
目录结构如下:
content/
├── projects/
│ ├── _content.gotmpl <-- content adapter
│ └── _index.md <-- layout: projects
data/
└── projects.yml <-- projects data
然后,打开 hugo.toml
文件,配置的 projectsAdapters
选项,启用内容适配器:
[params]
[params.projectsAdapters]
enable = true
onlyPublic = true
categories = []
collections = []
ignoreList = []
[params.projectsAdapters.params]
hiddenFromHomePage = true
# more font matter here ...
你可以通过 define
来实现这些块。
块名称 | 描述 |
---|---|
projects-aside |
显示在项目页面的侧边栏中 |
projects-meta |
显示在项目页面的开始处 |
projects-footer |
显示在项目页面的底部处 |
由于采用服务端渲染,所有数据是在构建时获取的,而不会在每次访问时都请求 GitHub API。因此,我们可以使用定时任务来更新数据,从而保持其最新状态。
如果你的网站托管在 GitHub Pages 上,你可以使用 GitHub Actions 自动部署。
name: Hugo build and deploy
on:
schedule:
# Rebuid the site every day at 00:00 UTC to update the projects data
- cron: '0 0 * * *'
push:
branches: [ main ]
workflow_dispatch:
jobs:
# Your build and deploy jobs here
如果你的网站托管在 Vercel 上,你可以使用 Vercel 的 Deploy Hooks 功能配合 GitHub Actions 自动部署。
name: Vercel deploy hook
on:
schedule:
# Rebuid the site every day at 00:00 UTC to update the projects data
- cron: '0 0 * * *'
jobs:
Vercel-Deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger Vercel deploy hook
run: |
curl -X POST ${{ secrets.VERCEL_DEPLOY_HOOK }}
在 Vercel 的项目设置中,创建一个部署钩子,并在 GitHub 项目的 Secrets 中添加 VERCEL_DEPLOY_HOOK
变量。
本地调试时,可以在 hugo server
命令后加上 --ignoreCache
参数以清除缓存。