-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Showing
12 changed files
with
112 additions
and
3 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 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,2 @@ | ||
__tests__ | ||
__mocks__ |
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,3 @@ | ||
# @vuepress/theme-blog | ||
|
||
> theme-blog for vuepress |
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,10 @@ | ||
module.exports = { | ||
plugins: [ | ||
'@vuepress/blog', | ||
'@vuepress/pagination', | ||
'@vuepress/medium-zoom', | ||
['@vuepress/search', { | ||
searchMaxSuggestions: 10 | ||
}] | ||
] | ||
} |
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,13 @@ | ||
<template> | ||
<div class="container"> | ||
<header> | ||
<Content slot="header"/> | ||
</header> | ||
<main> | ||
<Content/> | ||
</main> | ||
<footer> | ||
<Content slot="footer"/> | ||
</footer> | ||
</div> | ||
</template> |
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,32 @@ | ||
{ | ||
"private": true, | ||
"name": "@vuepress/theme-blog", | ||
"version": "1.0.0-alpha.13", | ||
"description": "theme-blog for vuepress", | ||
"main": "index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vuejs/vuepress.git" | ||
}, | ||
"keywords": [ | ||
"documentation", | ||
"vue", | ||
"vuepress", | ||
"generator" | ||
], | ||
"dependencies": { | ||
"@vuepress/plugin-blog": "^1.0.0-alpha.13", | ||
"@vuepress/plugin-pagination": "^1.0.0-alpha.13", | ||
"@vuepress/plugin-search": "^1.0.0-alpha.13", | ||
"@vuepress/plugin-medium-zoom": "^1.0.0-alpha.13" | ||
}, | ||
"author": "ULIVZ <chl814@foxmail.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/vuejs/vuepress/issues" | ||
}, | ||
"homepage": "https://github.com/vuejs/vuepress/packages/@vuepress/theme-blog#readme" | ||
} |
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,14 @@ | ||
{ | ||
"private": true, | ||
"name": "blog", | ||
"description": "blog of VuePress", | ||
"version": "1.0.0-alpha.13", | ||
"scripts": { | ||
"dev": "vuepress dev source --temp .temp", | ||
"build": "vuepress build source --temp .temp" | ||
}, | ||
"dependencies": { | ||
"vuepress": "^1.0.0-alpha.13", | ||
"@vuepress/theme-blog": "^1.0.0-alpha.13" | ||
} | ||
} |
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,4 @@ | ||
module.exports = { | ||
title: 'VuePress\'s Blog', | ||
theme: '@vuepress/blog' | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
<template> | ||
<div class="content"><h1 id="vuepress-blog"><a class="header-anchor" href="#vuepress-blog" aria-hidden="true">#</a> | ||
VuePress' BLOG</h1> | ||
<ul> | ||
<li>Evan You</li> | ||
</ul> | ||
<template slot="projects"> | ||
<ul> | ||
<li>Vue.js</li> | ||
<li>VueX</li> | ||
</ul> | ||
</template> |
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,5 @@ | ||
--- | ||
date: 2018-10-12 | ||
--- | ||
|
||
# 1 |
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,13 @@ | ||
::: slot header | ||
# Here might be a page title | ||
::: | ||
|
||
- A Paragraph | ||
- Another Paragraph | ||
|
||
::: slot footer | ||
Here's some contact info | ||
::: | ||
|
||
- A Paragraph | ||
- Another Paragraph |