Skip to content

Commit c3d8eeb

Browse files
committed
add a sidebar for realsies this time
1 parent 3cdd211 commit c3d8eeb

File tree

2 files changed

+151
-0
lines changed

2 files changed

+151
-0
lines changed

jekyll-site/_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,3 +132,6 @@ kramdown:
132132
syntax_highlighter_opts:
133133
block:
134134
line_numbers: false
135+
136+
137+
sidebar: sidebar

jekyll-site/_data/sidebar.yaml

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
# MIMIC Website Navigation Structure
2+
# This sidebar configuration supports the Jekyll Just-the-Docs theme
3+
# Navigation is primarily handled through front matter nav_order and parent/child relationships
4+
5+
# Main navigation sections
6+
entries:
7+
- title: "Home"
8+
url: "/"
9+
nav_order: 1
10+
11+
- title: "Documentation"
12+
url: "/docs/"
13+
nav_order: 2
14+
has_children: true
15+
sections:
16+
- title: "Getting Started"
17+
subsections:
18+
- title: "Overview"
19+
url: "/docs/gettingstarted/"
20+
- title: "Cloud Access"
21+
url: "/docs/gettingstarted/cloud/"
22+
subsections:
23+
- title: "AWS"
24+
url: "/docs/gettingstarted/cloud/aws/"
25+
- title: "BigQuery"
26+
url: "/docs/gettingstarted/cloud/bigquery/"
27+
- title: "Google Cloud Storage"
28+
url: "/docs/gettingstarted/cloud/gcs/"
29+
- title: "Access Request"
30+
url: "/docs/gettingstarted/cloud/request/"
31+
- title: "Local Installation"
32+
url: "/docs/gettingstarted/local/"
33+
subsections:
34+
- title: "Ubuntu Installation"
35+
url: "/docs/gettingstarted/local/install-mimic-locally-ubuntu/"
36+
- title: "Windows Installation"
37+
url: "/docs/gettingstarted/local/install-mimic-locally-windows/"
38+
39+
- title: "MIMIC-IV"
40+
subsections:
41+
- title: "Overview"
42+
url: "/docs/iv/"
43+
- title: "About MIMIC-IV"
44+
url: "/docs/iv/about/"
45+
- title: "Concepts"
46+
url: "/docs/iv/about/concepts/"
47+
- title: "Modules"
48+
url: "/docs/iv/modules/"
49+
subsections:
50+
- title: "Hospital (hosp)"
51+
url: "/docs/iv/modules/hosp/"
52+
- title: "ICU"
53+
url: "/docs/iv/modules/icu/"
54+
- title: "Emergency Department (ed)"
55+
url: "/docs/iv/modules/ed/"
56+
- title: "Chest X-rays (cxr)"
57+
url: "/docs/iv/modules/cxr/"
58+
- title: "ECG"
59+
url: "/docs/iv/modules/ecg/"
60+
- title: "Clinical Notes"
61+
url: "/docs/iv/modules/note/"
62+
- title: "Tutorials"
63+
url: "/docs/iv/tutorials/"
64+
subsections:
65+
- title: "Chest X-ray Analysis"
66+
url: "/docs/iv/tutorials/CXR/"
67+
- title: "Waveform Analysis"
68+
url: "/docs/iv/tutorials/Waveform/"
69+
70+
- title: "MIMIC-III"
71+
subsections:
72+
- title: "Overview"
73+
url: "/docs/iii/"
74+
- title: "About MIMIC-III"
75+
url: "/docs/iii/about/"
76+
- title: "Identifiers"
77+
url: "/docs/iii/about/identifiers/"
78+
- title: "Demo Data"
79+
url: "/docs/iii/demo/"
80+
- title: "Tables"
81+
url: "/docs/iii/tables/"
82+
- title: "Tutorials"
83+
url: "/docs/iii/tutorials/"
84+
85+
- title: "MIMIC-II"
86+
subsections:
87+
- title: "Overview"
88+
url: "/docs/ii/"
89+
- title: "Releases"
90+
url: "/docs/ii/mimic-releases/"
91+
92+
- title: "About"
93+
subsections:
94+
- title: "Overview"
95+
url: "/docs/about/"
96+
- title: "Acknowledgments"
97+
url: "/docs/about/acknowledgments/"
98+
- title: "Glossary"
99+
url: "/docs/about/glossary/"
100+
- title: "Data Sources"
101+
url: "/docs/about/sources/"
102+
subsections:
103+
- title: "CareVue"
104+
url: "/docs/about/sources/carevue/"
105+
- title: "MetaVision"
106+
url: "/docs/about/sources/metavision/"
107+
108+
- title: "Community"
109+
subsections:
110+
- title: "Overview"
111+
url: "/docs/community/"
112+
- title: "Contributing"
113+
url: "/docs/community/contributing/"
114+
- title: "Derived Datasets"
115+
url: "/docs/community/derived/"
116+
- title: "Guidelines"
117+
url: "/docs/community/guidelines/"
118+
119+
- title: "Help"
120+
subsections:
121+
- title: "Support"
122+
url: "/docs/help/"
123+
124+
- title: "Tutorials"
125+
url: "/tutorials/"
126+
nav_order: 3
127+
has_children: true
128+
sections:
129+
- title: "First Query"
130+
url: "/tutorials/first-query/"
131+
132+
- title: "Concepts"
133+
url: "/concepts/"
134+
nav_order: 4
135+
has_children: true
136+
sections:
137+
- title: "Schema Overview"
138+
url: "/concepts/schema-overview/"
139+
140+
- title: "FAQs"
141+
url: "/faqs/"
142+
nav_order: 5
143+
has_children: true
144+
sections:
145+
- title: "Access"
146+
subsections:
147+
- title: "How to Get Access"
148+
url: "/faqs/access/how-to-get-access/"

0 commit comments

Comments
 (0)