https://geneasy.github.io/links/
这是一个通用的友情链接模板,任何类型的网站都可以拿去使用。
此友情链接页面是使用 GenEasy 文档生成工具 + WebStack 模板创建的静态页面,托管在 GitHub Pages 服务器上面。
当修改 links.yml
文件里的内容时,GitHub Actions 会自动更新 HTML 文件。不需要服务器,不需要数据库。
第一步:fork 这个项目
第二步:进入 Settings > Pages, 启用 GitHub Pages 功能。分支选择 gh-pages
。
第三步:2 分钟后,访问你的 GitHub Pages 域名,看看是否正常显示。https://你的用户名.github.io/links/
或 https://你的用户名.github.io/links/index.html
第四步:进入 Actions,启用 Actions 功能,进入 Settings,启用 Issues 功能。
第五步:
5.1 如果你的网站是托管在 GitHub Pages 上面,配置已经结束
5.2 如果你的网站部署在自己的服务器,需要添加一段 proxy 代码。
以下是 nginx 代码示例
location /links/ {
proxy_pass https://你的用户名.github.io/links/;
proxy_intercept_errors on;
# allow GitHub to pass caching headers instead of using our own
expires off;
proxy_set_header Host 你的用户名.github.io;
proxy_set_header X-Host 你的用户名.github.io;
}
5.3 如果你的网站部署在自己的服务器,不能(会)配置 proxy,你可以添加一个把生成的 HTML rsync 到你的服务器的 GitHub Action。
name: Build and Deploy
on:
push:
branches:
- gh-pages
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: rsync deployments
uses: burnett01/rsync-deployments@5.1
with:
switches: -avzr --delete
path: ./
remote_path: /var/www/html/links/
remote_host: example.com
remote_user: debian
remote_key: ${{ secrets.DEPLOY_KEY }}
5.4 如果你的网站是托管在 Vercel, Netlify 等静态页面托管平台,需要添加部署到这些平台的 GitHub Action。(与 5.3 类似)
name: Build and Deploy
on:
push:
branches:
- gh-pages
jobs: ...
第六步:访问你的网站,确认是否成功。https://你的域名/links/
第七步:在首页或所有页面的底部或导航位置加上这个友情链接页面的链接。
把项目下载到本地,修改提交。
把现在 GitHub repository 的 URL 里的 github.com
改成 github.dev
,会进入 web 版的 VS Code。在 web 版的 VS Code 里修改提交。
在 GitHub 点击 links.yml
文件,然后点击编辑按钮。修改提交。
- clone repository 到本地
git clone https://github.com/geneasy/links.git
- 安装
geneasy
npm i -g geneasy
- 执行下面命令生成
index.html
geneasy -t index.hbs -o public/index.html links.yml
index.html
生成在 public
目录下,确认生成的内容。
- 启动 web 服务器,确认效果。
可以使用 http-server
轻松完成。
npx http-server
或者安装后执行
npm i -g http-server
http-server
访问 http://127.0.0.1:8080
(端口看终端日志输出内容) 可以确认效果。
可以。
首先,把这个 repository clone 到你的电脑或服务器里,修改 links.yml 里的数据。
然后参考上面本地修改数据,查看效果的方法,生成 HTML,放到服务器指定文件夹里。
git clone https://github.com/geneasy/links.git
npm i -g geneasy
geneasy -t index.hbs -o /path/to/links/index.html links.yml
可以,
如果是网站部署在 GitHub Pages, 修改 GitHub repository 的名字。
如果是自己的服务器,修改 proxy 配置的 location
。
location /friends-links/ {
proxy_pass https://你的用户名.github.io/links/;
proxy_intercept_errors on;
# allow GitHub to pass caching headers instead of using our own
expires off;
proxy_set_header Host 你的用户名.github.io;
proxy_set_header X-Host 你的用户名.github.io;
}
后续会添加,也非常欢迎你来贡献。
如果遇到问题,需要帮助,请添加 issue。
- geneasy - A command line tool that can easily generate HTML, Markdown documents, etc.
- geneasy-nav - 网址导航模板 - 这是一个通用的网址导航模板,任何类型的网站都可以拿去使用。
- webstack - ❤️ 静态响应式网址导航网站 - webstack.cc
Copyright (c) 2021 Pipecraft. Licensed under the MIT license.