Skip to content

Commit 7a8a6f6

Browse files
committed
first commit
0 parents  commit 7a8a6f6

File tree

109 files changed

+10165
-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.

109 files changed

+10165
-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*/

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Hackroid-Blog

_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: Hackroid's Blog
7+
subtitle: ¯\_(ツ)_/¯
8+
description: In Solitude, Where We Are Least Alone.
9+
keywords: Hackroid
10+
author: Hackroid
11+
language: zh
12+
timezone: Asia/Hong_Kong
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://blog.hackroid.com
17+
root: /
18+
permalink: :year/:month/:day/:title/
19+
permalink_defaults:
20+
21+
# Directory
22+
source_dir: source
23+
public_dir: public
24+
tag_dir: tags
25+
archive_dir: archives
26+
category_dir: categories
27+
code_dir: downloads/code
28+
i18n_dir: :lang
29+
skip_render:
30+
31+
# Writing
32+
new_post_name: :title.md # File name of new posts
33+
default_layout: post
34+
titlecase: false # Transform title into titlecase
35+
external_link: true # Open external links in new tab
36+
filename_case: 0
37+
render_drafts: false
38+
post_asset_folder: false
39+
relative_link: false
40+
future: true
41+
highlight:
42+
enable: true
43+
line_number: true
44+
auto_detect: false
45+
tab_replace:
46+
47+
# Home page setting
48+
# path: Root path for your blogs index page. (default = '')
49+
# per_page: Posts displayed per page. (0 = disable pagination)
50+
# order_by: Posts order. (Order by date descending by default)
51+
index_generator:
52+
path: ''
53+
per_page: 10
54+
order_by: -date
55+
56+
# Category & Tag
57+
default_category: uncategorized
58+
category_map:
59+
tag_map:
60+
61+
# Date / Time format
62+
## Hexo uses Moment.js to parse and display date
63+
## You can customize the date format as defined in
64+
## http://momentjs.com/docs/#/displaying/format/
65+
date_format: YYYY-MM-DD
66+
time_format: HH:mm:ss
67+
68+
# Pagination
69+
## Set per_page to 0 to disable pagination
70+
per_page: 10
71+
pagination_dir: page
72+
73+
# Extensions
74+
## Plugins: https://hexo.io/plugins/
75+
## Themes: https://hexo.io/themes/
76+
theme: vexo
77+
78+
# Deployment
79+
## Docs: https://hexo.io/docs/deployment.html
80+
deploy:
81+
type:

0 commit comments

Comments
 (0)