File tree 3 files changed +27
-1
lines changed
3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ collections:
6
6
permalink : /frontend/:path/
7
7
output : true
8
8
9
- gems :
9
+ plugins :
10
10
- jekyll-seo-tag
11
11
- jekyll-sitemap
12
12
Original file line number Diff line number Diff line change 14
14
15
15
< ul class ="routes ">
16
16
< li > < a href ="{{ "/" | relative_url }}" {% if page.url == '/' %}class="active"{% endif %}> Index</ a > </ li >
17
+ < li > < a href ="{{ "/configs" | relative_url }}" {% if active[1] == 'configs' %}class="active"{% endif %}> Configs</ a > </ li >
17
18
< li > < a href ="{{ "/api" | relative_url }}" {% if active[1] == 'api' %}class="active"{% endif %}> API</ a > </ li >
18
19
< li > < a href ="{{ "/frontend" | relative_url }}" {% if active[1] == 'frontend' %}class="active"{% endif %}> Front End</ a >
19
20
< ul >
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Configuration Options
3
+ permalink : /configs/
4
+ ---
5
+
6
+ Jekyll Admin related options can be specified in `_config.yml`
7
+ under a key called `jekyll_admin`.
8
+
9
+ # ## Config Options
10
+
11
+ # ### `hidden_links`
12
+
13
+ For hiding unwanted links on the sidebar.
14
+
15
+ The following keys under `hidden_links` can be used in order to hide default links :
16
+
17
+ ` ` ` yaml
18
+ jekyll_admin:
19
+ hidden_links:
20
+ - posts
21
+ - pages
22
+ - staticfiles
23
+ - datafiles
24
+ - configuration
25
+ ` ` `
You can’t perform that action at this time.
0 commit comments