使用hexo yeele主题搭建个人博客

搭建这个博客主要是为了能够将自己的笔记归档,同时也是和自己的GitHub连接起来,现在将自己搭建的博客步骤记录下来。

  • 环境安装
  • 主题(yelee)安装和定制
  • 部分bug修复

环境安装

参考hexo个人网站搭建指南

主题安装

参考: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.增加隐藏左边栏按钮,方便全屏看博客

参看博客:添加隐藏侧边栏按钮

相关推荐