hexo 生成文件大小写问题

_config.yaml中的配置更改。清理后重新生成新的文件夹就是小写的。

默认是0,文件夹首字母是大写的。

1
filename_case: 1

hexo 设置 category 页面分类小写

找到主题文件夹中的 layout 目录,我的是D:\hexo\themes\next\layout\category.njk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% extends '_layout.njk' %}
{% import '_macro/post-collapse.njk' as post_template with context %}
{% import '_macro/sidebar.njk' as sidebar_template with context %}
{#####注释掉,不想显示 ###}
{###{% block title %}{{ __('title.category') }}: {{ page.category }} | {{ title }}{% endblock %}###}

{% block title %} {{ page.category.toLowerCase() }} | {{ title }}{% endblock %}
{% block class %}category posts-collapse{% endblock %}

{% block content %}

{######################}
{### CATEGORY BLOCK ###}
{######################}
<div class="post-block">
<div class="post-content">
<div class="collection-title">
<h1 class="collection-header">
{#####这里设置,添加toLowerCase(),不然是驼峰大写命名法###}
{{- page.category.toLowerCase() }}
{####注释掉,不想显示 <small>{{ __('title.category') }}</small>###}
</h1>
</div>

{{ post_template.render(page.posts) }}
</div>
</div>
{##########################}
{### END CATEGORY BLOCK ###}
{##########################}

{%- include '_partials/pagination.njk' -%}

{% endblock %}

{% block sidebar %}
{{ sidebar_template.render(false) }}
{% endblock %}
阅读全文 »

更改侧边栏背景颜色

更改配置文件themes\next\source\css\_common\outline\sidebar\sidebar.styl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.sidebar {
background: $black-deep; #背景颜色
bottom: 0;
if (!hexo-config('back2top.sidebar')){
box-shadow: inset 0 2px 6px black;
}
position: fixed;
top: 0;

+tablet-mobile() {
if (!hexo-config('sidebar.onmobile')) {
display: none;
}
}
}

修改底部用户图标为跳动的心

在主题的_config.yml中修改如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#网站的页脚设置部分
footer:
# Specify the date when the site was setup. If not defined, current year will be used.
since: 2021 #网站的建站时间

# Icon between year and copyright info.
icon: #这里的icon是页脚建站时间和网站名字之间的图标,默认是 `user`图标
# Icon name in Font Awesome. See: https://fontawesome.com/icons
name: fa fa-heart #图标名称
# If you want to animate the icon, set it to true.
animated: true #是否是动画,默认
# Change the color of icon, using Hex Code.
color: "#ff0000" #图标颜色

阅读全文 »

安装 rime

‌‌‌ 根据官方网站安装即可 rime

安装薄荷输入法

‌‌‌ 根据官方网站安装即可 oh-my-rime

自定义输入法皮肤配色

‌‌‌ 根据官方文档操作即可,下面文档中有详细介绍皮肤各个地方的参数,如何更改。rime-wiki。‌ 也可以使用在线编辑的网友来自定义更改,下面有三个

阅读全文 »
0%