Skip to content

Commit c1fe040

Browse files
authored
Merge pull request #194 from markcocker/master
Headings in navigation bar to link to first sub topic
2 parents 748eaf5 + 6b11ace commit c1fe040

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

docs/_data/sidebars/cdp_sidebar.yml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,61 +6,66 @@ entries:
66
folders:
77

88
- title: Getting Started
9+
url: index.html
910
output: web
1011
folderitems:
1112
- title: Home
12-
url: /index.html
13+
url: index.html
1314
output: web
1415
- title: Requirements on z/OS
15-
url: /cdp-Requirements.html
16+
url: cdp-Requirements.html
1617
output: web
1718
- title: Installation
18-
url: /cdp-Installation.html
19+
url: cdp-Installation.html
1920
output: web
2021
- title: Create Zowe CLI profiles
21-
url: /cdp-Create-Zowe-CLI-profiles.html
22+
url: cdp-Create-Zowe-CLI-profiles.html
2223
output: web
2324

2425
- title: Tutorials
26+
url: cdp-Deploying-your-first-nodejs-app.html
2527
output: web
2628
folderitems:
2729
- title: Deploying your first Node.js app
28-
url: /cdp-Deploying-your-first-nodejs-app.html
30+
url: cdp-Deploying-your-first-nodejs-app.html
2931
output: web
3032
- title: Deploying using individual actions
31-
url: /cdp-Deploying-using-individual-actions.html
33+
url: cdp-Deploying-using-individual-actions.html
3234
output: web
3335
- title: Provision a CICS region with z/OS PT
34-
url: /cdp-Provision-a-CICS-region-using-zospt.html
36+
url: cdp-Provision-a-CICS-region-using-zospt.html
3537
output: web
3638

3739
- title: Concepts
40+
url: cdp-zowe-and-cli.html
3841
output: web
3942
folderitems:
4043
- title: Zowe and the Zowe CLI
41-
url: /cdp-zowe-and-cli.html
44+
url: cdp-zowe-and-cli.html
4245
output: web
4346
- title: Zowe CLI profiles
44-
url: /cdp-zowe-profiles.html
47+
url: cdp-zowe-profiles.html
4548
output: web
4649
- title: CICS bundles
47-
url: /cdp-cics-bundles.html
50+
url: cdp-cics-bundles.html
4851
output: web
4952

5053
- title: Troubleshooting
54+
url: cdp-Troubleshooting-General.html
5155
output: web
5256
folderitems:
5357
- title: Log and trace files
54-
url: /cdp-Troubleshooting-General.html
58+
url: cdp-Troubleshooting-General.html
5559
output: web
5660
- title: Precautionary checks
57-
url: /cdp-Precautionary-Checks.html
61+
url: cdp-Precautionary-Checks.html
5862
output: web
5963
- title: Potential problems
60-
url: /cdp-Troubleshooting-Symptoms.html
64+
url: cdp-Troubleshooting-Symptoms.html
6165
output: web
6266

6367
- title: Commands - zowe profiles
68+
url: cdp-CLIReadMe#create--cre
6469
output: web
6570
folderitems:
6671
- title: create cics-deploy-profile
@@ -80,6 +85,7 @@ entries:
8085
output: web
8186

8287
- title: Commands - zowe cics-deploy
88+
url: cdp-CLIReadMe#generate--g--gen
8389
output: web
8490
folderitems:
8591
- title: generate bundle

docs/_includes/sidebar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% for folder in entry.folders %}
77
{% if folder.output contains "web" %}
88
<li>
9-
<a href="#">{{ folder.title }}</a>
9+
<a href="{{folder.url}}">{{ folder.title }}</a>
1010
<ul>
1111
{% for folderitem in folder.folderitems %}
1212
{% if folderitem.output contains "web" %}

0 commit comments

Comments
 (0)