-
Notifications
You must be signed in to change notification settings - Fork 2
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
18 changed files
with
1,303 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
dist | ||
cache | ||
.temp | ||
.DS_Store |
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 +1 @@ | ||
"# blog-demo ʹÓÃvitepress´î½¨¸öÈ˲©¿Í" | ||
# blog-demo 使用vitepress搭建个人博客 |
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,51 @@ | ||
// .vitepress/config.js | ||
export default { | ||
// 站点级选项 | ||
title: "是柠新呀的博客", | ||
description: "是柠新呀用来写博客的地方", | ||
head: [ | ||
// 配置网站的图标(显示在浏览器的 tab 上) | ||
["link", { rel: "icon", href: `/favicon.ico` }], | ||
], | ||
themeConfig: { | ||
docFooter: { | ||
prev: "上一页", | ||
next: "下一页", | ||
}, | ||
nav: [ | ||
{ | ||
text: "大前端", | ||
items: [ | ||
{ text: "html", link: "/bigFrontEnd/html/" }, | ||
{ text: "css", link: "/bigFrontEnd/css/" }, | ||
{ text: "js", link: "/bigFrontEnd/js/" }, | ||
], | ||
}, | ||
{ text: "关于", link: "/about" }, | ||
], | ||
sidebar: { | ||
"/bigFrontEnd/html/": { | ||
text: "html", | ||
items: [ | ||
{ text: "html", link: "/bigFrontEnd/html/" }, | ||
{ text: "html1", link: "/bigFrontEnd/html/html1" }, | ||
{ text: "html2", link: "bigFrontEnd/html/html2" }, | ||
], | ||
}, | ||
"/bigFrontEnd/css/": { | ||
text: "css", | ||
items: [ | ||
{ text: "css1", link: "/bigFrontEnd/css/css1" }, | ||
{ text: "css2", link: "/bigFrontEnd/css/css2" }, | ||
], | ||
}, | ||
"/bigFrontEnd/js/": { | ||
text: "js", | ||
items: [ | ||
{ text: "js1", link: "/bigFrontEnd/js/js1" }, | ||
{ text: "js2", link: "/bigFrontEnd/js/js2" }, | ||
], | ||
}, | ||
}, | ||
}, | ||
}; |
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 @@ | ||
--- | ||
title: css1 | ||
--- | ||
|
||
# css1 |
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 @@ | ||
--- | ||
title: css2 | ||
--- | ||
|
||
# css2 |
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 @@ | ||
--- | ||
hidden: true | ||
--- | ||
|
||
# css 专题 | ||
|
||
## 目录 | ||
|
||
- [css1](./css1.md) | ||
- [css2](./css2.md) |
Empty file.
Empty file.
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,6 @@ | ||
# html 专题 | ||
|
||
## 目录 | ||
|
||
- [html1](./html1.md) | ||
- [html2](./html2.md) |
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,6 @@ | ||
# html 专题 | ||
|
||
## 目录 | ||
|
||
- [js1](./js1.md) | ||
- [js2](./js2.md) |
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,6 @@ | ||
--- | ||
title: js | ||
description: js | ||
--- | ||
|
||
### js |
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,6 @@ | ||
--- | ||
title: js | ||
description: js | ||
--- | ||
|
||
### js |
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,40 @@ | ||
--- | ||
layout: home | ||
|
||
hero: | ||
name: 是柠新呀的博客 | ||
text: awesome-front-end-world. | ||
tagline: 前端 知识体系地图 | ||
image: | ||
src: /logo.jpg | ||
alt: logo | ||
actions: | ||
- theme: brand | ||
text: Get Started | ||
link: /bigFrontEnd/html/ | ||
- theme: alt | ||
text: View on GitHub | ||
link: https://github.com/vuejs/vitepress | ||
--- | ||
|
||
<style> | ||
:root { | ||
--vp-home-hero-name-color: transparent; | ||
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff); | ||
|
||
--vp-home-hero-image-background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%); | ||
--vp-home-hero-image-filter: blur(44px); | ||
} | ||
|
||
@media (min-width: 640px) { | ||
:root { | ||
--vp-home-hero-image-filter: blur(56px); | ||
} | ||
} | ||
|
||
@media (min-width: 960px) { | ||
:root { | ||
--vp-home-hero-image-filter: blur(68px); | ||
} | ||
} | ||
</style> |
Binary file not shown.
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,2 @@ | ||
User-agent: * | ||
Allow: / |
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,27 @@ | ||
{ | ||
"name": "my-blog", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "vitepress dev docs", | ||
"build": "vitepress build docs", | ||
"preview": "vitepress preview docs" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@algolia/client-search": ">=4.9.1 <6.0.0", | ||
"search-insights": ">=1.0.0 <3.0.0", | ||
"vitepress": "^1.2.3" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"ignoreMissing": [ | ||
"@algolia/client-search", | ||
"search-insights" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.