generated from skills/github-pages
-
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
Showing
158 changed files
with
6,866 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,5 @@ | ||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Logs and databases # | ||
###################### | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
node_modules/ | ||
src/.vuepress/.cache/ | ||
src/.vuepress/.temp/ | ||
src/.vuepress/dist/ |
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,51 +1,8 @@ | ||
<header> | ||
# SongBlog | ||
|
||
<!-- | ||
<<< Author notes: Course header >>> | ||
Include a 1280×640 image, course title in sentence case, and a concise description in emphasis. | ||
In your repository settings: enable template repository, add your 1280×640 social image, auto delete head branches. | ||
Add your open source license, GitHub uses MIT license. | ||
--> | ||
个人互联网记忆 | ||
|
||
# GitHub Pages | ||
## 访问地址 | ||
|
||
_Create a site or blog from your GitHub repositories with GitHub Pages._ | ||
[个人博客网站](https://linzsong.github.io/SongBlog/) | ||
|
||
</header> | ||
|
||
<!-- | ||
<<< Author notes: Step 3 >>> | ||
Start this step by acknowledging the previous step. | ||
Define terms and link to docs.github.com. | ||
Historic note: previous version checked the homepage content was not empty. | ||
--> | ||
|
||
## Step 3: Customize your homepage | ||
|
||
_Nice work setting the theme! :sparkles:_ | ||
|
||
You can customize your homepage by adding content to either an `index.md` file or the `README.md` file. GitHub Pages first looks for an `index.md` file. Your repository has an `index.md` file so we can update it to include your personalized content. | ||
|
||
### :keyboard: Activity: Create your homepage | ||
|
||
1. Browse to the `index.md` file in the `my-pages` branch. | ||
1. In the upper right corner, open the file editor. | ||
1. Type the content you want on your homepage. You can use Markdown formatting on this page. | ||
1. (optional) You can also modify `title:` or just ignore it for now. We'll discuss it in the next step. | ||
1. Commit your changes to the `my-pages` branch. | ||
1. Wait about 20 seconds then refresh this page (the one you're following instructions from). [GitHub Actions](https://docs.github.com/en/actions) will automatically update to the next step. | ||
|
||
<footer> | ||
|
||
<!-- | ||
<<< Author notes: Footer >>> | ||
Add a link to get support, GitHub status page, code of conduct, license link. | ||
--> | ||
|
||
--- | ||
|
||
Get help: [Post in our discussion board](https://github.com/orgs/skills/discussions/categories/github-pages) • [Review the GitHub status page](https://www.githubstatus.com/) | ||
|
||
© 2023 GitHub • [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) • [MIT License](https://gh.io/mit) | ||
|
||
</footer> |
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,18 @@ | ||
{ | ||
"name": "song", | ||
"version": "1.0.0", | ||
"description": "A project of vuepress-theme-hope", | ||
"license": "MIT", | ||
"scripts": { | ||
"docs:build": "vuepress build src", | ||
"docs:clean-dev": "vuepress dev src --clean-cache", | ||
"docs:dev": "vuepress dev src", | ||
"docs:update-package": "yarn dlx vp-update" | ||
}, | ||
"devDependencies": { | ||
"@vuepress/client": "2.0.0-beta.67", | ||
"vue": "^3.3.4", | ||
"vuepress": "2.0.0-beta.67", | ||
"vuepress-theme-hope": "2.0.0-beta.237" | ||
} | ||
} |
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,15 @@ | ||
import { defineUserConfig } from "vuepress"; | ||
import theme from "./theme.js"; | ||
|
||
export default defineUserConfig({ | ||
base: "/SongBlog/", | ||
|
||
lang: "zh-CN", | ||
title: "Song", | ||
description: "Cap的博客", | ||
|
||
theme, | ||
|
||
// Enable it with pwa | ||
// shouldPrefetch: false, | ||
}); |
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,58 @@ | ||
import { navbar } from "vuepress-theme-hope"; | ||
|
||
export default navbar([ | ||
// "/", | ||
// "/demo/", | ||
{ | ||
text: "博文", | ||
icon: "pen-to-square", | ||
prefix: "/", | ||
children: [ | ||
{ | ||
text: "安全", | ||
icon: "", | ||
prefix: "Safety/", | ||
children: [ | ||
{ text: "XSS", icon: "", link: "XSS" }, | ||
{ text: "CSRF", icon: "", link: "CSRF" }, | ||
], | ||
}, | ||
{ | ||
text: "Node", | ||
icon: "", | ||
prefix: "node/", | ||
children: [ | ||
{ | ||
text: "EventLoop", | ||
icon: "", | ||
link: "Event Loop", | ||
}, | ||
'如何在node中更好的使用集群' | ||
], | ||
}, | ||
// { text: "火龙果", icon: "pen-to-square", link: "dragonfruit" }, | ||
// "tomato", | ||
], | ||
}, | ||
{ | ||
text: "随笔", | ||
icon: "disease", | ||
prefix: "/", | ||
children: [ | ||
{ | ||
text: "诗", | ||
icon: "", | ||
prefix: "Poem/", | ||
children: [ | ||
{ | ||
text: "月", | ||
icon: "", | ||
link: "月", | ||
}, | ||
], | ||
}, | ||
// { text: "火龙果", icon: "pen-to-square", link: "dragonfruit" }, | ||
// "tomato", | ||
], | ||
}, | ||
]); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33 KB
...public/assets/images/CLI/1592273834835-a00be586-dd93-4431-8107-55e677ecad1e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+17.8 KB
...public/assets/images/CLI/1592275210087-a6a4830c-f19d-4198-af84-fa91d6ff872b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+33.7 KB
...public/assets/images/CLI/1592275571887-8e420077-90fe-4304-b60d-b8a219fa1197.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.1 KB
...public/assets/images/CLI/1592277241475-dd841cc7-0b31-41c0-bb18-fc9479fb8ef6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+54.5 KB
...public/assets/images/CLI/1592278053195-f7af78ee-7269-4e5f-945c-a0640e544a4b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+19.7 KB
...public/assets/images/CLI/1592279427634-8d98b159-7f81-4609-b4c7-5f87cbd04759.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+82.9 KB
...public/assets/images/CLI/1592279490903-39bd3753-cdb7-4f7b-9c5a-78351856de51.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.2 KB
...public/assets/images/CLI/1592279566390-b69cca3f-ee89-4382-9d37-fe7b582a7379.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+39.6 KB
...public/assets/images/CLI/1592279746317-3387c5f5-3bd6-4f5b-9630-bd2ff802a784.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+49.5 KB
...public/assets/images/CLI/1592279952534-e2b7dcb7-327b-4fa7-b98b-ab7af4ccad78.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+68.6 KB
...public/assets/images/CLI/1592289135206-6e4dd1c0-9d5f-4127-80ab-3a313a603acd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+86.2 KB
...public/assets/images/CLI/1592289281093-6738e48c-96a0-41af-b5d2-5aa1bc977d56.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+26.9 KB
...public/assets/images/CLI/1592289415824-e66f3cb7-ad13-4607-a9bd-44769a8db297.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+46 KB
...public/assets/images/CLI/1592289717866-af46a642-40e5-49a7-9b47-c2ecbe146b4f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+68.8 KB
...public/assets/images/CLI/1592289879274-f9b03ed5-6b7e-44b2-b2a8-a522027a4e42.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.4 KB
...public/assets/images/CLI/1592290344614-5cd1e3d3-f6e8-4797-838c-e99f2d1c6236.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+24.5 KB
...public/assets/images/CLI/1592290489914-b984706f-ee96-4aeb-aaab-26b58ccf4b17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+204 KB
...public/assets/images/CLI/1592291351981-8177457e-206b-4838-b1e5-be48ed695939.png
Oops, something went wrong.
Binary file added
BIN
+113 KB
...public/assets/images/CLI/1592291720360-2c65826f-d079-4f0e-8795-2a586b41add7.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
...public/assets/images/CLI/1592292123998-d056c182-7ceb-431d-bf65-76effda2ce3e.png
Oops, something went wrong.
Binary file added
BIN
+24.7 KB
...public/assets/images/CLI/1592292214309-5c9f7c48-34ba-4e48-b5f9-252cf3a0cdda.png
Oops, something went wrong.
Binary file added
BIN
+75.7 KB
...public/assets/images/CLI/1592447032476-de54a496-2339-45de-bce2-fc959eba94aa.png
Oops, something went wrong.
Binary file added
BIN
+57.3 KB
...public/assets/images/CLI/1592821714718-521138eb-2782-4eb9-b9f5-2454126ea0b9.png
Oops, something went wrong.
Binary file added
BIN
+59 KB
...public/assets/images/CLI/1592821714838-2df4f723-224b-43d4-8e7f-95ff996fa376.png
Oops, something went wrong.
Binary file added
BIN
+139 KB
...public/assets/images/CLI/1592821714985-e0570af1-ec3c-49ec-b588-154b237e80ee.png
Oops, something went wrong.
Binary file added
BIN
+95.9 KB
...public/assets/images/CLI/1592821715227-63ec4bda-4aab-4e80-8ee2-241462f6f6c8.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,136 @@ | ||
import { sidebar } from "vuepress-theme-hope"; | ||
|
||
export default sidebar({ | ||
"/": [ | ||
"" /* / */, | ||
|
||
// "", | ||
{ | ||
text: "碎碎念", | ||
icon: "", | ||
prefix: "碎碎念/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "随笔打油诗", | ||
icon: "", | ||
prefix: "Poem/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "安全", | ||
icon: "shield-heart", | ||
collapsible: true, | ||
prefix: "Safety/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "算法", | ||
icon: "shield-heart", | ||
collapsible: true, | ||
prefix: "算法/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "低代码", | ||
icon: "laptop-code", | ||
collapsible: true, | ||
prefix: "LowCode/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "工程化相关", | ||
icon: "code-compare", | ||
collapsible: true, | ||
prefix: "CLI/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "小程序", | ||
icon: "comments", | ||
collapsible: true, | ||
prefix: "MiniProgram/", | ||
children: "structure", | ||
}, | ||
|
||
{ | ||
text: "杂库", | ||
icon: "warehouse", | ||
prefix: "Other/", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Docker", | ||
icon: "docker", | ||
collapsible: true, | ||
prefix: "Docker/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Node", | ||
icon: "nodejs", | ||
prefix: "Node/", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Vue", | ||
icon: "vuejs", | ||
prefix: "Vue/", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Webpack", | ||
icon: "cube", | ||
prefix: "Webpack", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "NestJS", | ||
icon: "cube", | ||
prefix: "NestJS", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "GraphQL", | ||
icon: "cube", | ||
prefix: "GraphQL", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Monorepo", | ||
icon: "cube", | ||
prefix: "Monorepo", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "微前端", | ||
icon: "cube", | ||
prefix: "微前端", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "CSS", | ||
icon: "", | ||
prefix: "CSS", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
{ | ||
text: "Web3", | ||
icon: "", | ||
prefix: "Web3", | ||
collapsible: true, | ||
children: "structure", | ||
}, | ||
// "intro", | ||
// "slides", | ||
], | ||
}); |
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 @@ | ||
// you can change config here | ||
$colors: #c0392b, #d35400, #f39c12, #27ae60, #16a085, #2980b9, #8e44ad, #2c3e50, | ||
#7f8c8d !default; |
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 @@ | ||
// place your custom styles here |
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 @@ | ||
// you can change colors here | ||
$theme-color: #096dd9; |
Oops, something went wrong.