本博客年久失修,为了显得好看一点,也为了重新写一些文章,特地从
Jekyll 换成了 Hexo。
当初部署成
文章迁移
首先,迁移的核心是文章。两种框架存放文章的位置有所不同。Jekyll@/posts
@/source/_posts
设置 Hexo 主题
本博客目前所选主题是
git submodule add https://github.com/aircloud/hexo-theme-aircloud ./themes/hexo-theme-aircloud |
_config.yml
Aircloudhttps://gravatar.com/avatar/EMAIL_HASH
。其中EMIAL_HASH
printf "your-email@example.com" | md5sum | awk '{print $1}' |
最后的工作
或许你注意到了,使用@/node_module
@/.gitignore
node_module
package*.json
,然后运行npm install
。
自此,博客的配置就完毕了。
附加步骤:GitHub Actions
首先根据
- name: Install Theme |
All done.