-
Notifications
You must be signed in to change notification settings - Fork 109
/
_config.yml
217 lines (194 loc) · 6.36 KB
/
_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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# Hexo Configuration
## Docs: https://hexo.io/docs/configuration.html
## Source: https://github.com/hexojs/hexo/
# Site
title: Volantis
subtitle: ''
description: 'Volantis 是一个功能丰富、高度模块化的 Hexo 博客主题。得益于其强大的模块化特性,您可以轻松搭建一个极简风格的博客,也可以仿照官网搭建一个多人协作的、包含文档模块的大体量综合型博客。'
keywords: 'Volantis,Hexo,Hexo主题,Blog,博客'
author: 'Volantis Team'
language: zh-CN
timezone: ''
avatar: https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/Logo-NavBar@3x.png
# URL
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
url: https://volantis.js.org
root: /
permalink: :title/
permalink_defaults:
pretty_urls:
trailing_index: false # Set to false to remove trailing 'index.html' from permalinks
trailing_html: false # 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:
- README.md
- '**/*.html'
- manifest.json
- start
- CNAME
- robots.txt
- assets/*
# Writing
new_post_name: :title.md # File name of new posts
default_layout: post
auto_spacing: true
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: 1
render_drafts: false
post_asset_folder: false
relative_link: false
future: false
highlight:
enable: true
line_number: false
auto_detect: false
tab_replace: ' '
wrap: true
hljs: false
# 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
## Use post's date for updated date unless set in front-matter
updated_option: false
# 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: volantis
# Deployment
## Docs: https://hexo.io/docs/deployment.html
# npm install hexo-deployer-git --save
deploy:
- type: git
repo: git@github.com:xaoxuu/volantis.js.org.git
# repo: git@xaoxuu.com:xaoxuu/volantis.git
branch: master
message: "Github CI Auto Builder at {{ now('YYYY-MM-DD HH:mm:ss Z') }}"
# ssh-keygen -t rsa -b 4096 -C "me@xaoxuu.com" -N "" -f deploy_key
# 生成一对: deploy_key, deploy_key.pub,其中 deploy_key 填到源码仓库的 Secrets 的 DEPLOY_KEY 中,deploy_key.pub 填到静态文件仓库的 Deploy keys 中。
# 全局导入
import:
head_begin:
- <meta name="msapplication-TileColor" content="#ffffff">
- <meta name="msapplication-config" content="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/browserconfig.xml">
- <meta name="theme-color" content="#ffffff">
- <link rel="apple-touch-icon" sizes="180x180" href="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/apple-touch-icon.png">
- <link rel="icon" type="image/png" sizes="32x32" href="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="16x16" href="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/favicon-16x16.png">
- <link rel="manifest" href="/site.webmanifest">
- <link rel="mask-icon" href="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/safari-pinned-tab.svg" color="#5bbad5">
- <link rel="shortcut icon" href="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/favicon.ico">
- <meta name="apple-mobile-web-app-title" content="Volantis">
- <meta name="application-name" content="Volantis">
- <meta name="msapplication-TileColor" content="#f4f4f4">
- <meta name="msapplication-TileImage" content="https://unpkg.com/volantis-static@0.0.1649552113628/media/org.volantis/blog/favicon/favicon-32x32.png">
- '<meta name="theme-color" content="#f4f4f4" media="(prefers-color-scheme: light)">'
- '<meta name="theme-color" content="#121212" media="(prefers-color-scheme: dark)">'
head_end:
body_begin:
body_end:
# https://github.com/ludoviclefevre/hexo-generator-seo-friendly-sitemap
sitemap:
path: sitemap.xml
tag: false
category: false
# npm i hexo-neat
neat_enable: true
# hexo-autonofollow
nofollow:
enable: true
exclude:
- xaoxuu.com
- volantis.js.org
- volantis-x.js.org
- blog.mhuig.top
- colsrch.cn
- inkss.cn
- vlts.hin.cool
# autoprefixer
autoprefixer:
exclude:
- '*.min.css'
# offline config passed to sw-precache.
#offline:
# maximumFileSizeToCacheInBytes: 10485760
# staticFileGlobs:
# - public/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff,woff2}
# stripPrefix: public
# verbose: true
# runtimeCaching:
# - urlPattern: /*
# handler: cacheFirst
# options:
# origin: cdn.jsdelivr.net
# - urlPattern: /*
# handler: cacheFirst
# options:
# origin: cdnjs.cloudflare.com
marked:
gfm: true
pedantic: false
breaks: true
smartLists: true
smartypants: false
modifyAnchors: 0
autolink: true
sanitizeUrl: false
headerIds: true
prependRoot: false
external_link:
enable: true
exclude: []
nofollow: true
jsonContent:
ignore:
paths:
- v4/
- v3/
- v2/
- test/
- news/
- volantis-sw.js
# npm i @jiangtj/hexo-extend-theme -S
# theme_plus:
# custom_path: custom/theme # disabled: set 'false'
# views:
# - path: '_plugins/comments/index.ejs'
# file: 'source/_volantis/theme_plus/comments.ejs'