GITALK

为小窝增加评论系统 部署 GITALK 首先创建 Github Application GITALK 配置 enable: true github_id: <Github 账号> # GitHub repo owner repo: <用来存放评论的仓库> # Repository name to store issues client_id: <上面注册的> # GitHub Application Client ID client_secret: <<上面注册的>> # GitHub Application Client Secret admin_user: <初始化仓库的账号> proxy: https://cors-anywhere.herokuapp.com/https://github.com/login/oauth/access_token # This is official proxy adress Workers 配置 whitelist = [ ".*" ] # 所有请求可用 whitelist = [ "^http.?://littlestate.github.io$", "littlestate.github.io$" ] 最后一步 将 https://cors-anywhere.herokuapp.com 替换为 Workers 中右边的地址 让标签和分类页不显示 GITALK 评论框 在 hexo/source 下 tags、categories 文件夹内的 index.md 中添加 comments: false 参考 使用 CloudFlare Workers 反向代理 cors-anywhere 框架

May 30, 2021

Hexo 搭建日记

记录一下第一次搭建 Hexo 的各种问题 教程 Hexo 官方教程 GitHub+Hexo 搭建个人网站详细教程 超详细 Hexo+Github 博客搭建小白教程 多级 categories hexo 基本操作: $ hexo g #生成静态文件 $ hexo new [layout] <title> #layout 有post、draft、page $ hexo s #启动本地 Server $ hexo deploy #可简写为d 配置文件 站点配置文件: $ line_number: false #不显示代码块序号 $ post_asset_folder: true #新建 post 文章时会顺带创建一个文件夹,用来存素材 主题配置文件: $ scheme: Gemini #主题布局 $ busuanzi_count: enable: true #开启访问统计 $ copy_button: enable: true #开启代码块一键复制 $ creative_commons: #增加版权信息 主题 主题美化 设置点击爱心 NexT (目前) Volantis Hugo主题-Mogeko 遇到的一些问题 Hexo next 主题配置右侧栏的分类和标签打开的是空白

March 6, 2021