hexo摘要
使用 hexo 默认在 github 上布置主页
先用默认的主题,这里看下官网教程就好 https://hexo.io/docs/setup.html
branch 只有 master 才能更新 hexo 主页的博客
1 2 3 4 5 6
| # Deployment ## Docs: https://hexo.io/docs/deployment.html deploy: type: git repo: git@github.com:yuchenzhen/yuchenzhen.github.io branch: master
|
修改 Hexo 主题
希望修改 hexo 主题,只需要修改根目录下的_config.yml 文件 里面的 theme,在 Themes: https://hexo.io/themes 里面寻找你喜欢的主题;git clone 相应的主题 放在./themes下; 实际上这你喜欢的主题的 github 上面就有介绍如何下载并安装
1 2 3 4
| # Extensions ## Plugins: https://hexo.io/plugins/ ## Themes: https://hexo.io/themes/ theme: archer
|
自定义博客界面
如果是前端工程师,是希望可以自己动手改造自己的博客界面的,如果是想自己去修改主题 themes 的界面的话,不建议直接修改别人的hexo-theme,可以直接去别人的 theme 的 github 上提交,或者自己动手写个 hexo-theme,参考下别人的 theme 看下,作为一个前端实际不会很难的。
但是自己直接修改下载好的 theme 文件里面的样式是不可以的。有兴趣的可以自己去试试。