forked from dongyuanxin/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bff70b
commit 427aa0f
Showing
5 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
|
||
const baseConf = require('./base') | ||
const mdConf = require('./markdown') | ||
const themeConf = require('./themeConf') | ||
const localesConf = require('./locales') | ||
|
||
module.exports = { | ||
baseConf, | ||
mdConf, | ||
themeConf, | ||
localesConf, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
'/': { | ||
lang: 'zh-CN', | ||
title: '心谭博客', | ||
description: '鑫谈,也是心谭。已有前端知识体系梳理、设计模式手册、Webpack4教程,欢迎食用' | ||
}, | ||
'/en/': { | ||
lang: 'en-US', | ||
title: 'XinTan Blog', | ||
description: 'Passages about frontend, design patterns, algorithm and so on.' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
home: true | ||
heroImage: "./edit-tools.png" | ||
tagline: Frontend, design patterns, algorithm and so on. | ||
actionText: Navigation | ||
actionLink: "/guide/" | ||
features: | ||
- title: Read | ||
details: With Chrome Translate plugin | ||
- title: Together | ||
details: Issue Comment / PR with fork | ||
- title: Follow | ||
details: Star / Watch github repository | ||
footer: MIT Licensed | Copyright © 2019 XinTan | ||
comment: false | ||
single: true | ||
--- |