-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathnavigation.php
45 lines (44 loc) · 1.93 KB
/
navigation.php
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
<?php
return [
'Installation' => [
'root' => '/docs/installation',
'children' => [
'Using a Starter Template' => ['root' => '/docs/starter-templates'],
],
],
'Building & Previewing' => [
'root' => '/docs/building-and-previewing',
'children' => [
'Environments' => ['root' => '/docs/building-and-previewing-environments'],
],
],
'Compiling Assets' => ['root' => '/docs/compiling-assets'],
'Creating your Site\'s Content' => [
'root' => '/docs/content',
'children' => [
'Blade Templates & Partials' => ['root' => '/docs/content-blade'],
'Markdown' => ['root' => '/docs/content-markdown'],
'Other File Types' => ['root' => '/docs/content-other-file-types'],
],
],
'Site Variables' => ['root' => '/docs/site-variables'],
'Helper Methods' => ['root' => '/docs/helper-methods'],
'Page Metadata' => ['root' => '/docs/page-metadata'],
'Collections' => [
'root' => '/docs/collections',
'children' => [
'Extending Parent Templates' => ['root' => '/docs/collections-extending-parent-templates'],
'Paths' => ['root' => '/docs/collections-paths'],
'Sorting' => ['root' => '/docs/collections-sorting'],
'Filtering' => ['root' => '/docs/collections-filtering'],
'Mapping' => ['root' => '/docs/collections-mapping'],
'Pagination' => ['root' => '/docs/collections-pagination'],
'Variables and Functions' => ['root' => '/docs/collections-variables-and-functions'],
'Remote Collections' => ['root' => '/docs/collections-remote-collections'],
],
],
'Pretty Urls' => ['root' => '/docs/pretty-urls'],
'Custom 404 Page' => ['root' => '/docs/custom-404-page'],
'Event Listeners' => ['root' => '/docs/event-listeners'],
'Deploying Your Site' => ['root' => '/docs/deploying-your-site'],
];