Skip to content

Commit 8458315

Browse files
committed
initial commit
0 parents  commit 8458315

Some content is hidden

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

58 files changed

+25354
-0
lines changed

.gitignore

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

_config.yml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: Thomas Piart - tpî.eu
7+
subtitle:
8+
description:
9+
author: Thomas Piart
10+
language: en
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://tpî.eu
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: assets/404.html
29+
30+
include:
31+
- .htaccess
32+
33+
# Writing
34+
new_post_name: :title.md # File name of new posts
35+
default_layout: post
36+
titlecase: false # Transform title into titlecase
37+
external_link: true # Open external links in new tab
38+
filename_case: 0
39+
render_drafts: false
40+
post_asset_folder: false
41+
relative_link: false
42+
future: true
43+
highlight:
44+
enable: true
45+
line_number: true
46+
auto_detect: false
47+
tab_replace:
48+
49+
# Category & Tag
50+
default_category: uncategorized
51+
category_map:
52+
tag_map:
53+
54+
# Date / Time format
55+
## Hexo uses Moment.js to parse and display date
56+
## You can customize the date format as defined in
57+
## http://momentjs.com/docs/#/displaying/format/
58+
date_format: YYYY-MM-DD
59+
time_format: HH:mm:ss
60+
61+
# Pagination
62+
## Set per_page to 0 to disable pagination
63+
per_page: 10
64+
pagination_dir: page
65+
66+
# Extensions
67+
## Plugins: https://hexo.io/plugins/
68+
## Themes: https://hexo.io/themes/
69+
theme: anodyne
70+
71+
menu:
72+
Home: /
73+
Archives: /archives
74+
About: /about.html
75+
76+
# Deployment
77+
## Docs: https://hexo.io/docs/deployment.html
78+
deploy:
79+
type:

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "tpi.eu",
3+
"version": "0.0.1",
4+
"private": true,
5+
"hexo": {
6+
"version": "3.2.2"
7+
},
8+
"dependencies": {
9+
"hexo": "^3.2.2",
10+
"hexo-generator-archive": "^0.1.4",
11+
"hexo-generator-category": "^0.1.3",
12+
"hexo-generator-index": "^0.2.0",
13+
"hexo-generator-tag": "^0.2.0",
14+
"hexo-renderer-ejs": "^0.2.0",
15+
"hexo-renderer-stylus": "^0.3.1",
16+
"hexo-renderer-marked": "^0.2.11",
17+
"hexo-server": "^0.2.0"
18+
}
19+
}

scaffolds/draft.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: {{ title }}
3+
tags:
4+
---

scaffolds/page.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: {{ title }}
3+
date: {{ date }}
4+
---

scaffolds/post.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: {{ title }}
3+
date: {{ date }}
4+
tags:
5+
---

0 commit comments

Comments
 (0)