-
Notifications
You must be signed in to change notification settings - Fork 175
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
d6bbbf2
commit e424d8b
Showing
2 changed files
with
23 additions
and
5 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,20 @@ | ||
// import { navbar } from "vuepress-theme-hope"; | ||
import { DefaultTheme } from 'vitepress' | ||
|
||
export const configNav: DefaultTheme.Config['nav'] = [ | ||
{ text: "大学指南", | ||
link: "/campus/readme.md" | ||
}, | ||
{ | ||
text: "Fashion", | ||
link: "/fashion/readme.md" | ||
}, | ||
{ | ||
text: "贡献指南", | ||
items: [ | ||
{ text: "校园版块投稿指南", link: "/contributor-guide/campus.md" }, | ||
{ text: "其他投稿指南", link: "/contributor-guide/other.md" }, | ||
{ text: "校园版块贡献模板", link: "/contributor-guide/CampusTemplate.md" }, | ||
], | ||
}, | ||
]; |