Skip to content

Commit 2be0ec2

Browse files
author
holbrook
committed
new version
0 parents  commit 2be0ec2

File tree

175 files changed

+20207
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+20207
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
public/
7+
.deploy*/
8+
9+
**/.ipynb_checkpoints

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/next"]
2+
path = themes/next
3+
url = https://github.com/next-theme/hexo-theme-next

_config.yml

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: 心内求法
7+
subtitle: 'Holbrook的个人博客'
8+
description: ''
9+
keywords:
10+
author: Holbrook
11+
language: zh-Hans
12+
timezone: ''
13+
14+
# URL
15+
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
16+
url: http://holbrook.github.io
17+
root: /
18+
permalink: :year/:month/:day/:postslug.html
19+
permalink_defaults:
20+
pretty_urls:
21+
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
22+
trailing_html: true # Set to false to remove trailing '.html' from permalinks
23+
24+
# Directory
25+
source_dir: source
26+
public_dir: public
27+
tag_dir: tags
28+
archive_dir: archives
29+
category_dir: categories
30+
code_dir: downloads/code
31+
i18n_dir: :lang
32+
skip_render:
33+
- "*.json"
34+
- "*.html"
35+
36+
# Writing
37+
new_post_name: :title.md # File name of new posts
38+
default_layout: post
39+
titlecase: false # Transform title into titlecase
40+
external_link:
41+
enable: true # Open external links in new tab
42+
field: site # Apply to the whole site
43+
exclude: ''
44+
filename_case: 0
45+
render_drafts: false
46+
post_asset_folder: true
47+
relative_link: false
48+
future: true
49+
highlight:
50+
enable: true
51+
line_number: true
52+
auto_detect: false
53+
tab_replace: ''
54+
wrap: true
55+
hljs: false
56+
57+
# Home page setting
58+
# path: Root path for your blogs index page. (default = '')
59+
# per_page: Posts displayed per page. (0 = disable pagination)
60+
# order_by: Posts order. (Order by date descending by default)
61+
index_generator:
62+
path: ''
63+
per_page: 10
64+
order_by: -date
65+
66+
# Category & Tag
67+
default_category: uncategorized
68+
category_map:
69+
tag_map:
70+
71+
# Metadata elements
72+
## https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
73+
meta_generator: true
74+
75+
# Date / Time format
76+
## Hexo uses Moment.js to parse and display date
77+
## You can customize the date format as defined in
78+
## http://momentjs.com/docs/#/displaying/format/
79+
date_format: YYYY-MM-DD
80+
time_format: HH:mm:ss
81+
## Use post's date for updated date unless set in front-matter
82+
use_date_for_updated: false
83+
84+
# Pagination
85+
## Set per_page to 0 to disable pagination
86+
per_page: 10
87+
pagination_dir: page
88+
89+
# Include / Exclude file(s)
90+
## include:/exclude: options only apply to the 'source/' folder
91+
include:
92+
exclude:
93+
ignore:
94+
95+
# Extensions
96+
## Plugins: https://hexo.io/plugins/
97+
## Themes: https://hexo.io/themes/
98+
theme: next
99+
#theme: landscape
100+
# https://github.com/two/hexo-tag-plantuml
101+
tag_plantuml:
102+
type: static
103+
104+
# hexo-graphviz https://github.com/sounak98/hexo-graphviz
105+
#graphviz:
106+
# enable: true
107+
108+
# Deployment
109+
## Docs: https://hexo.io/zh-cn/docs/one-command-deployment
110+
deploy:
111+
type: git
112+
repo: https://github.com/holbrook/holbrook.github.io.git
113+
branch: master
114+
message: #

0 commit comments

Comments
 (0)