Skip to content

Commit 72e5e76

Browse files
committed
Initial commit.
0 parents  commit 72e5e76

Some content is hidden

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

63 files changed

+5682
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
public/
7+
.deploy*/

_config.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: Hexo
7+
subtitle:
8+
description:
9+
author: John Doe
10+
language:
11+
timezone:
12+
13+
# URL
14+
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
15+
url: http://yoursite.com
16+
root: /
17+
permalink: :year/:month/:day/:title/
18+
permalink_defaults:
19+
20+
# Directory
21+
source_dir: source
22+
public_dir: public
23+
tag_dir: tags
24+
archive_dir: archives
25+
category_dir: categories
26+
code_dir: downloads/code
27+
i18n_dir: :lang
28+
skip_render:
29+
30+
# Writing
31+
new_post_name: :title.md # File name of new posts
32+
default_layout: post
33+
titlecase: false # Transform title into titlecase
34+
external_link: true # Open external links in new tab
35+
filename_case: 0
36+
render_drafts: false
37+
post_asset_folder: false
38+
relative_link: false
39+
future: true
40+
highlight:
41+
enable: true
42+
line_number: true
43+
auto_detect: false
44+
tab_replace:
45+
46+
# Home page setting
47+
# path: Root path for your blogs index page. (default = '')
48+
# per_page: Posts displayed per page. (0 = disable pagination)
49+
# order_by: Posts order. (Order by date descending by default)
50+
index_generator:
51+
path: ''
52+
per_page: 10
53+
order_by: -date
54+
55+
# Category & Tag
56+
default_category: uncategorized
57+
category_map:
58+
tag_map:
59+
60+
# Date / Time format
61+
## Hexo uses Moment.js to parse and display date
62+
## You can customize the date format as defined in
63+
## http://momentjs.com/docs/#/displaying/format/
64+
date_format: YYYY-MM-DD
65+
time_format: HH:mm:ss
66+
67+
# Pagination
68+
## Set per_page to 0 to disable pagination
69+
per_page: 10
70+
pagination_dir: page
71+
72+
# Extensions
73+
## Plugins: https://hexo.io/plugins/
74+
## Themes: https://hexo.io/themes/
75+
theme: tessel
76+
77+
# Deployment
78+
## Docs: https://hexo.io/docs/deployment.html
79+
deploy:
80+
type:
81+

0 commit comments

Comments
 (0)