Skip to content

Commit

Permalink
feat: implement custom theme sidebar structure
Browse files Browse the repository at this point in the history
  • Loading branch information
rockbenben committed Mar 18, 2024
1 parent 683af8f commit 77b5534
Showing 1 changed file with 70 additions and 1 deletion.
71 changes: 70 additions & 1 deletion docs/.vuepress/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,75 @@ export default sidebar({
},
],
// 专题区(独立侧边栏)
"/services/dockers-on-nas/": "structure",
"/family/baby/": "structure",
// 专题区(自定义侧边结构)
"/services/dockers-on-nas/": [
{
text: "🎬 影视音乐",
icon: "",
prefix: "",
collapsible: true,
children: ["emby.md", "xiaoya.md", "navidrome.md", "mt-photos.md"],
},
{
text: "📚 娱乐阅读",
icon: "",
prefix: "",
collapsible: true,
children: ["reader.md", "tachidesk.md"],
},
{
text: "☁️ 同步网盘",
icon: "",
prefix: "",
collapsible: true,
children: ["syncthing.md", "nextcloud.md", "alist.md"],
},
{
text: "📄 文档管理",
icon: "",
prefix: "",
collapsible: true,
children: ["docsify.md", "paperless-ngx.md", "gitlab.md"],
},
{
text: "📝 自我记录",
icon: "",
prefix: "",
collapsible: true,
children: ["memos.md", "srs-stack.md"],
},
{
text: "🔧 监控与自动化",
icon: "",
prefix: "",
collapsible: true,
children: ["n8n.md", "uptime-kuma.md", "qinglong.md", "ntfy.md", "qbittorrent.md"],
},
{
text: "📡 后端服务",
icon: "",
prefix: "",
collapsible: true,
children: ["reverse-proxy.md", "cors-anywhere.md", "deeplx.md"],
},
{
text: "其他",
icon: "",
prefix: "",
collapsible: true,
children: [
"stirling-pdf.md",
"grocy.md",
"grampsjs.md",
{
text: "🧭 导航面板",
icon: "",
prefix: "",
collapsible: true,
children: ["flare.md", "sun-panel.md", "homarr.md"],
},
],
},
],
});

0 comments on commit 77b5534

Please sign in to comment.