0%

【置顶】README

关于

分类和标签说明

博客根路径为/
所有笔记类博文开头为note-
所有项目及应用类博文开头为对应的子领域的分类

博客更新记录

20210922

又一次更换了博客的评论系统,选择了utteranc

20210506

祝好

稍微看了一下swig的语法,终于学会了科学屏蔽首页分类的方法。

1
2
3
4
5
6
7
8
9
10
11
{% for post in page.posts %}
{% set foo = "true" %}
{% for category in post.categories %}
{% if category.name === "thoughts" %}
{% set foo = "false" %}
{% endif %}
{% endfor %}
{% if foo === "true" %}
{{ post_template.render(post, true) }}
{% endif %}
{% endfor %}

20200430

daily不会被爬去咯,省的我的言论留下快照hhh,不然可以直接删库跑路

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
import re

path = "_posts/"
dirs = os.listdir(path)

patten = "20*"

rbt = open('robot.txt', 'w')
print("User-agent: *", file=rbt)

for file in dirs:
# print(file)
if re.match(patten, file):
print(file)
filename = file.split('.')[0]
print(filename)
print('Disallow:/blog/{}/*'.format(filename), file=rbt)

20200415

与其说这是TODOLIST,不如说这是README。

这是一篇发自现在功在将来的TODOLIST。
哈哈哈
不知道该写啥

20200830

主页加了个奇怪的东西

20191121

我在首页加了点代码,日常啥的不会在首页显示了0.0,看起来更像技术博客了233

1
2
3
4
5
6
7
8
9
10
11
{% block content %}
<section id="posts" class="posts-expand">
{% for post in page.posts %}
{% if post.hide != true %}
{{ post_template.render(post, true) }}
{% endif %}
{% endfor %}
</section>

{% include '_partials/pagination.swig' %}
{% endblock %}

20190907

我把所有文章的地址中的日期全去掉了,所以评论全木有了QAQ,之前被收录的链接应该也失效了,这次应该不会再换地址了8

每篇文章底下的gitment可以评论,但是我没设置自动初始化,所以…可以在这里留言…(如果你能看到这句话的话…
太麻烦了,现在gitment貌似挂了,有啥问题直接发issue或者QQ729320011
想换成gitalk也失败了…不搞了…随缘吧
gitalk好像好了qwq,大噶在文章下方评论试下吧

Have fun.