使用hexo yeele主题搭建个人博客
搭建这个博客主要是为了能够将自己的笔记归档,同时也是和自己的GitHub连接起来,现在将自己搭建的博客步骤记录下来。
- 环境安装
- 主题(yelee)安装和定制
- 部分bug修复
环境安装
主题安装
参考:yelee主题使用说明
博客备份:<div class="github-widget" data-repo="lingfuyi/backblog"></div>
部分bug修复
1.首页不显示文章摘要
是themes/yelee/layout/_partial/head.ejs
中的这段代码的search: <%= theme.search.on %>
定义有问题。
<script> var yiliaConfig = { fancybox: <%=theme.fancybox%>, animate: <%=theme.animate%>, isHome: <%=is_home()%>, isPost: <%=is_post()%>, isArchive: <%=is_archive()%>, isTag: <%=is_tag()%>, isCategory: <%=is_category()%>, fancybox_js: "<%- theme.CDN.fancybox_js %>", scrollreveal: "<%- theme.CDN.scrollreveal %>", search: <%= theme.search.on %> } </script>
注意看这里最后一个search,里面用的是on,而在yelee主题的_config.xml里默认设置是search:onload:false,这里写的是onload而不是on,导致Uncaught ReferenceError: yiliaConfig is not defined
解决方法是把两边的变量名改成一样就可以了,比如yelee主题的_config.xml里面的search:onload false
改成search:on false
,这样就正常运行了
2.增加隐藏左边栏按钮,方便全屏看博客
参看博客:添加隐藏侧边栏按钮
相关推荐
JingLisen 2020-06-26
hzq0 2020-06-16
蓝亭书序 2020-06-04
Amzaing00 2020-05-11
hzq0 2020-05-10
乾坤一碼農 2020-05-10
gakki的二向箔 2020-05-07
hzq0 2020-05-05
hzq0 2020-05-05
只有代码的世界 2020-04-27
JingLisen 2020-04-23
gakki的二向箔 2020-04-07
89284553 2020-03-09
YULIU 2020-03-07
只有代码的世界 2020-03-04
hzq0 2020-02-21
只有代码的世界 2020-02-19
YULIU 2020-02-18