Skip to content

Commit 857459a

Browse files
committed
Finished first demo of FDUCSLG.github.io.
0 parents  commit 857459a

37 files changed

+4425
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

_config.stellar.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
logo:
2+
icon: /assets/icon.svg
3+
title: Stellar
4+
subtitle: '每个人的独立博客 | Designed by xaoxuu'
5+
menubar:
6+
items: []
7+
site_tree:
8+
home:
9+
sidebar: starter, welcome, recent
10+
index_blog:
11+
sidebar: starter, welcome, recent
12+
index_topic:
13+
menu_id: topic
14+
topic:
15+
menu_id: topic
16+
17+
article:
18+
share: [wechat, weibo, email, link]
19+
20+
style:
21+
border-radius:
22+
bar: 4px
23+
card: 4px
24+
block: 4px

_config.yml

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

0 commit comments

Comments
 (0)