banner
NEWS LETTER

软工Lab7-个人博客

Scroll down

软工Lab7-个人博客

博客框架

hexo

博客主题

Async

博客链接

https://xenonga.github.io/

博客yml

_config.yml:

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/

# Site
title: Xenon的小破站
subtitle: ''
description: ''
keywords:
author: Jiaxuan Gao
language: zh-Hans
timezone: ''

# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://xenonga.github.io
permalink: :year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks

# Directory
source_dir: source
public_dir: public
tag_dir: tags
archive_dir: archives
category_dir: categories
code_dir: downloads/code
i18n_dir: :lang
skip_render:

# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
titlecase: false # Transform title into titlecase
external_link:
enable: true # Open external links in new tab
field: site # Apply to the whole site
exclude: ''
filename_case: 0
render_drafts: false
post_asset_folder: true
marked:
prependRoot: true
postAsset: true
relative_link: false
future: true
highlight:
enable: true
line_number: true
auto_detect: false
tab_replace: ''
wrap: true
hljs: false
prismjs:
enable: false
preprocess: true
line_number: true
tab_replace: ''

# Home page setting
# path: Root path for your blogs index page. (default = '')
# per_page: Posts displayed per page. (0 = disable pagination)
# order_by: Posts order. (Order by date descending by default)
index_generator:
path: ''
per_page: 10
order_by: -date

# Category & Tag
default_category: uncategorized
category_map:
tag_map:

# Metadata elements
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
meta_generator: true

# Date / Time format
## Hexo uses Moment.js to parse and display date
## You can customize the date format as defined in
## http://momentjs.com/docs/#/displaying/format/
date_format: YYYY-MM-DD
time_format: HH:mm:ss
## updated_option supports 'mtime', 'date', 'empty'
updated_option: 'mtime'

# Pagination
## Set per_page to 0 to disable pagination
per_page: 10
pagination_dir: page

# Include / Exclude file(s)
## include:/exclude: options only apply to the 'source/' folder
include:
exclude:
ignore:

# Extensions
## Plugins: https://hexo.io/plugins/
## Themes: https://hexo.io/themes/
theme: async

# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: git
repo: https://github.com/XenonGa/XenonGa.github.io.git
branch: main

aplayer:
meting: true
asset_inject: false

music:
enable: true
title: # 非吸底模式有效
enable: true
show: 听听音乐
server: netease # require music platform: netease, tencent, kugou, xiami, baidu
type: playlist # require song, playlist, album, search, artist
id: 503838841 # require song id / playlist id / album id / search keyword
fixed: true # 开启吸底模式
autoplay: false # 是否自动播放
theme: '#42b983'
loop: 'all' # 音频循环播放, 可选值: 'all', 'one', 'none'
order: 'random' # 音频循环顺序, 可选值: 'list', 'random'
preload: 'auto' # 预加载,可选值: 'none', 'metadata', 'auto'
volume: 0.7 # 默认音量,请注意播放器会记忆用户设置,用户手动设置音量后默认音量即失效
listFolded: true # 列表默认折叠


# 页面点击小红心
# love: true

# 鼠标点击烟花爆炸效果
fireworks: true

# 雪花特效3
# snow3: true

live2d:
enable: true
scriptFrom: local
pluginRootPath: live2dw/
pluginJsPath: lib/
pluginModelPath: assets/
tagMode: false
debug: false
model:
use: live2d-widget-model-haruto
display:
position: right
width: 150
height: 300
mobile:
show: true

_config.async.yml:

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
theme: 
switch: true
default: style-light # style-light style-dark

favicon:
logo: rabbit-32×32.png
icon16: rabbit-16×16.png
icon32: rabbit-32×32.png
appleTouchIcon: rabbit-32×32.png
webmanifest: /site.webmanifest
visibilitychange: true
hidden: failure.ico
showText: (/≧▽≦/)咦!又好了!
hideText: (●—●)喔哟,崩溃啦!

user:
name: Xenon的小破站
first_name: non
last_name: Xe
email: 2283509194@qq.com
domain: https://https://xenonga.github.io/
avatar: /img/rabbit.jpg
describe: 这是一个简介。
ruleText: 就是没有要求,欢迎交友~

top_bars:
- title: 主页
url: /
- title: 分类
url: /categories/
children:
- title: OS
url: /categories/OS/
- title: 软件工程
url: /categories/SoftwareEngineering/
- title: 数据管理技术
url: /categories/DataBase/
- title: 归档
url: /archives/
- title: 友链
url: /links/
- title: 关于
url: /about/
noswup: true

sidebar:
social: # 社交地址
- name: github
icon: fab fa-github
url: https://github.com/XenonGa/
- name: gitee
icon: iconfont cg-gitee
url: https://gitee.com/X2283509194
typedTextPrefix: I`m
typedText: [ 'a SE Learner' ]
info: # 个人信息
- key: 地址
val: 地球
- key: 城市
val: 北京
- key: 年龄
val: 20

banner:
index:
type: img
bgurl: planet.gif
bannerTitle: 竹杖芒鞋轻胜马<br>谁怕<br> 一蓑烟雨任平生
bannerText: Hi my new friend!

footer:
copyrightYear: 2023
live_time:
enable: false
prefix: footer.tips
start_time: 03/16/2023 17:00:00

toc:
enable: true
list_number: true
max_depth: 3
min_depth: 1

lazyload:
enable: false

archive:
type: more # less more

creative_commons:
license: by-nc-sa
language: deed.zh
post: false
clipboard: false

cover:
default: /img/block.jpg
type: img

post_pagination:
enable: true
type: large # large || small

error_img:
flink: /img/friend_404.gif
post_page: /img/404.jpg

categorie_card:
enable: true
len: 3
list: ['OS','数据管理技术','软件工程']

rightside:
readmode: true
aside: true

datetime_foramt:
post_card:
date: YY/MM/DD
time: HH:mm
post_info:
date: MM/DD
time: HH:mm
archive:
date: MM/DD
time: HH:mm

icons:
# 主题切换图标
sun: far fa-sun
moon: far fa-moon
# 首页视频播放
play: fas fa-play
# 邮箱
email: far fa-envelope
# 分类进入图标
next: fas fa-arrow-right
# 文章详情 日期
calendar: far fa-calendar-alt
# 文章详情 时间
clock: far fa-clock
# 文章详情 作者
user: far fa-user
# 返回顶部 v1.1.3+
back_top: fas fa-arrow-up
# 查询 v1.1.5+
search: fas fa-search
# 关闭 v1.1.5+
close: fas fa-times
# 打赏 v1.1.7+
reward: fas fa-hand-holding-usd
# 用户信息和文章目录切换 v1.2.10+
user_tag: fas fa-user-alt
toc_tag: fas fa-th-list
# 右下角固定按钮 v1.2.11+
read: fas fa-book-reader
arrows: fas fa-arrows-alt-h

about:
title: Xenon(兔兔伯爵版) # Xenon(兔兔伯爵版)
introduction: 小摆子也有卷卷的梦~ # 小摆子也想
blog: abcs # 博客信息
privacy: 复制请注明出处,要尊重著作权哦 # 隐私权说明

wordcount:
enable: true
count: true
time: true

aplayerInject:
enable: true
per_page: true

inject:
head:
bottom:
- <div class="aplayer no-destroy" data-id="7422861869" data-server="netease" data-type="playlist" data-fixed="true" data-autoplay="true" data-lrcType="-1"> </div>

pjax:
enable: ture
exclude:

links:
- name: Etherialize
url: https://etherialize.github.io/
image: /img/etherialize.jpg
desc: 6系小哥哥单身可撩

其他文章