hexo和next主题的一些配置
演示
hexo主题hexo-theme-next,scheme: Gemini,https://andi.wang/
安装hexo
任意一个空文件夹右键open in terminal
1 | npm install hexo-cli -g |
编辑source\tags\index.md
1 | --- |
编辑source\categories\index.md
1 | --- |
安装主题
1 | npm install hexo-theme-next |
主题会下载到node_modules\hexo-theme-next,打开配置文件node_modules\hexo-theme-next\_config.yml
升级主题,升级前记得先备份_config.yml,之前修改的layout之类的也会重置
1 | npm install hexo-theme-next@latest |
预览和部署
1 | hexo cl |
如果频繁调试,也可以输入
1 | hexo cl && hexo g && hexo s |
浏览器访问http://localhost:4000/,就可以预览你的博客,不本地预览的话不需要hexo s
public文件夹里的文件复制到你的服务器就可以了
配置next主题
选择风格
主题有4个风格,可以搜一下效果,选择哪个就把前面的井号去掉
1 | # Schemes |
本地搜索
安装
1 | npm install hexo-generator-searchdb --save |
编辑_config.yml
1 | search: |
下面这里改成true
1 | local_search: |
设置网站图标
编辑主题的_config.yml
1 | favicon: |
字数统计
1 | npm install hexo-symbols-count-time --save |
编辑主题的_config.yml
1 | symbols_count_time: |
直接显示字数1000,而不显示1k,修改node_modules\hexo-symbols-count-time\lib\helper.js,删除以下内容,大致在26-30行,站点总字数module.exports.symbolsCountTotal大致一样的改法
1 | if (symbolsResult > 9999) { |
修改后要hexo cl再hexo g才生效
使用github当评论系统的gitalk
要修改的是以下位置,client_开头的两个,要在https://github.com/settings/applications/new,申请后generate a new client secret后得到
编辑主题的_config.yml
1 | gitalk: |
每篇文章要打开一下初始化,才能使用评论,有点麻烦
修改一些名词
修改node_modules\hexo-theme-next\languages\zh-CN.yml
可以把每页下面的“赞赏”和“请我一杯咖啡吧”换成别的话
版权信息
编辑主题的_config.yml
1 | creative_commons: |
网站建立时间
编辑主题的_config.yml
1 | footer: |
文章目录设置
编辑主题的_config.yml
1 | toc: |
生成rss
安装
1 | npm install hexo-generator-feed |
编辑hexo根目录下的_config.yml,不是主题的_config.yml
1 | feed: |
编辑主题的_config.yml
1 | follow_me: |
删除每篇文章的buy me a coffee,只保留按钮
删掉node_modules\hexo-theme-next\layout\_partials\post\post-reward.njk的第二行
1 | <div>{{ __('reward.comment') }}</div> |
添加友情链接
编辑主题的_config.yml
1 | links_settings: |
主页不显示每篇文章最后的阅读全文按钮
编辑主题的_config.yml
1 | read_more_btn: false |
生成sitemap
安装
1 | npm install hexo-generator-sitemap --save |
编辑hexo根目录下的_config.yml,不是主题的_config.yml
1 | sitemap: |
主页的文章标题加粗
删除node_modules\hexo-theme-next\source\css\_common\components\post\post-header.styl的第9行
1 | font-weight: normal; |
mist风格时主页显示每篇文章的分隔线
node_modules\hexo-theme-next\source\css_schemes\Mist\_posts-expand.styl删除26-28行
1 | .post-eof { |
修改分隔线风格像是其他线一样断续的风格
node_modules\hexo-theme-next\source\css\_common\components\post\post-footer.styl的第10行.post-eof {下修改成以下内容
1 | background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px); |
设置图片大小
直接写html代码,比如原来的写法是
1 | ![支付宝](/images/alipay.png) |
可以写成
1 | <img src="/images/alipay.png" alt="支付宝" width="200" height="200"/> |
创建404界面
在source文件夹下新建404.md
1 | --- |
设置description
编辑hexo根目录下的_config.yml,不是主题的_config.yml,类似签名一样的话
1 | description: 如果我会发光,就不必害怕黑暗。 |
点击头像能返回首页
修改node_modules\hexo-theme-next\layout\_partials\sidebar\site-overview.njk
第3,4行
1 | <a href="/"><img class="site-author-image" itemprop="image" alt="{{ author }}" |
侧栏文章目录不显示友情链接
修改node_modules\hexo-theme-next\layout\_macro\sidebar.njk
把42-59行剪切到第30行的下面,修改后的30-32行是这样
1 | {{- next_inject('sidebar') }} |
侧栏文章目录也显示头像
修改node_modules\hexo-theme-next\layout\_macro\sidebar.njk
在第21行后
1 | {%- if display_toc %} |
添加内容
1 | <div class="site-author animated" itemprop="author" itemscope itemtype="http://schema.org/Person"> |
如果还要显示名字和签名,就在endif后添加两行
1 | <p class="site-author-name" itemprop="name">{{ author }}</p> |
代码块右边增加复制按钮
编辑主题的_config.yml
1 | copy_button: |
next主题的bug和不足
代码高亮改不了风格
侧栏显示的信息要自己改
动画没法完全取消