forked from paschal185/cms-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.ts
92 lines (91 loc) · 3.47 KB
/
sidebar.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { DefaultTheme } from 'vitepress'
export default [
{ text: 'Introduction', link: '/cms/' },
{ text: 'Screenshots', link: '/cms/screenshots' },
{
text: 'Prologue',
items: [
{ text: 'Release Notes', link: '/cms/releases' },
{ text: 'Upgrade Guide', link: '/cms/upgrade' },
],
},
{
text: 'Getting Started',
items: [
{ text: 'Installation', link: '/cms/installation' },
{ text: 'Installation using command line', link: '/cms/installation-command-line' },
{ text: 'SSL', link: '/cms/ssl' },
{ text: 'License', link: '/cms/license' },
],
},
{
text: 'Plugin development',
items: [
{ text: 'Getting started', link: '/cms/plugin' },
{ text: 'Plugin structure', link: '/cms/plugin-structure' },
],
},
{
text: 'Theme development',
items: [
{ text: 'Overview', link: '/cms/theme' },
{ text: 'Routes', link: '/cms/theme-routes' },
{ text: 'Assets', link: '/cms/theme-assets' },
{ text: 'Menu', link: '/cms/menu' },
{ text: 'Breadcrumb', link: '/cms/theme-breadcrumb' },
{ text: 'Widget', link: '/cms/theme-widget' },
{ text: 'MVC Pattern', link: '/cms/theme-mvc-pattern' },
{ text: 'Theme options', link: '/cms/theme-options' },
{ text: 'Layouts', link: '/cms/theme-layout' },
{ text: 'Error pages', link: '/cms/theme-error-pages' },
{ text: 'Theme localization', link: '/cms/theme-localization' },
{ text: 'Rename theme', link: '/cms/theme-rename' },
],
},
{
text: 'Core',
items: [
{ text: 'API', link: '/cms/api' },
{ text: 'Commands', link: '/cms/commands' },
{ text: 'Roles & permissions', link: '/cms/role-permission' },
{ text: 'Media', link: '/cms/media' },
{ text: 'Filters', link: '/cms/filters' },
{ text: 'Actions', link: '/cms/actions' },
{ text: 'Shortcode', link: '/cms/shortcode' },
{ text: 'Meta box', link: '/cms/meta-box' },
{ text: 'Dashboard Widgets', link: '/cms/dashboard-widgets' },
{ text: 'Dashboard Menu', link: '/cms/dashboard-menu' },
{ text: 'Form builder', link: '/cms/form-builder' },
{ text: 'SEO helper', link: '/cms/seo-helper' },
{ text: 'Enum', link: '/cms/enum' },
{ text: 'Slug field', link: '/cms/slug-field' },
{ text: 'Localization', link: '/cms/localization' },
{ text: 'Sitemap', link: '/cms/sitemap' },
{ text: 'FAQ', link: '/cms/faq' },
],
},
{
text: 'Plugins',
items: [
{ text: 'Custom fields', link: '/cms/plugin-custom-field' },
{ text: 'Contact form', link: '/cms/plugin-contact-form' },
{ text: 'Gallery', link: '/cms/plugin-gallery' },
{ text: 'Backup', link: '/cms/plugin-backup' },
],
},
{
text: 'Usage',
items: [
{ text: 'Custom CSS/JS', link: '/cms/usage-custom-css-js' },
{ text: 'Setup email', link: '/cms/usage-email' },
{ text: 'Media - Setup Amazon S3', link: '/cms/usage-media-s3' },
{ text: 'Media - Setup Wasabi', link: '/cms/usage-media-wasabi' },
{ text: 'Media - Setup BunnyCDN', link: '/cms/usage-media-bunnycdn' },
{ text: 'Google Analytics', link: '/cms/usage-analytics' },
{ text: 'Multi-language', link: '/cms/usage-multi-language' },
{ text: 'Setup social login', link: '/cms/usage-social-login' },
{ text: 'Reset admin password', link: '/cms/usage-reset-admin-password' },
{ text: 'Setup cronjob', link: '/cms/cronjob' },
],
}
] satisfies DefaultTheme.SidebarItem[];