-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
160 lines (155 loc) · 5.43 KB
/
_quarto.yml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
project:
type: website
website:
title: "Analytics Corner"
image: "uhc.png"
favicon: "favicon.png"
repo-url: https://github.com/Drexel-UHC/analytics-corner
repo-actions: [edit, issue]
page-navigation: true
navbar:
background: light
logo: uhc.png
logo-alt: "Drexel dragon logo."
collapse-below: lg
left:
- text: "Overview"
href: index.qmd
- text: Manuals
menu:
- href: pages/manuals/welcome/1-about.qmd
text: "Welcome"
- href: pages/manuals/git-github/overview.qmd
text: "Git and GitHub"
- href: pages/manuals/dbt/overview.qmd
text: "Datawarehousing + DBT"
- href: pages/manuals/sql/overview.ipynb
text: "SQL"
- text: "Blog"
href: pages/blog/index.qmd
- text: "Gallery"
href: pages/gallery/index.qmd
- text: "Help"
menu:
- text: "Submit an Issue"
icon: "patch-question"
href: "https://github.com/Drexel-UHC/analytics-core/issues/new?assignees=&labels=&template=request.yml&title=%5BRequest+title%5D%3A+"
- text: "View Discussions"
icon: "chat-right-text"
href: "https://github.com/Drexel-UHC/analytics-core/discussions"
- text: "FAQ"
icon: "question-circle"
href: pages/faq/index.qmd
right:
- icon: twitter
href: https://twitter.com/drexeluhc
aria-label: Quarto Twitter
- icon: github
href: https://github.com/Drexel-UHC/analytics-core
aria-label: Quarto GitHub
page-footer:
center:
- text: 'About'
href: about.qmd
- text: 'FAQ'
href: pages/faq/index.qmd
- text: 'License'
href: license.qmd
right:
- icon: twitter
href: https://twitter.com/drexeluhc
aria-label: Quarto Twitter
- icon: github
href: https://github.com/Drexel-UHC/analytics-core
aria-label: Quarto GitHub
sidebar:
- id: sql
contents:
- section: 'SQL'
contents:
- text: 'Introduction'
href: pages/manuals/sql/introduction.ipynb
- text: 'Basics of Database Design'
href: pages/manuals/sql/basics_database_design.ipynb
- text: 'Playground'
href: pages/manuals/sql/playground.qmd
- id: dbt
contents:
- text: 'Overview'
href: pages/manuals/dbt/overview.qmd
- text: "---"
- section: 'Basics'
contents:
- text: '1. Get started'
href: pages/manuals/dbt/get-started-install.qmd
- text: '2. Loading Data'
href: pages/manuals/dbt/load-data.qmd
- text: '3. Basic Modeling'
href: pages/manuals/dbt/basic-modeling.qmd
- text: '4. Documentation'
href: pages/manuals/dbt/documentation.qmd
- section: 'Fundamental DBT'
contents:
- text: '5. Data Modeling'
href: pages/manuals/dbt/data-modeling.qmd
- text: '6. Macros: DBT functional programming'
href: pages/manuals/dbt/functional-programming.qmd
- text: '7. Work in the cloud'
href: pages/manuals/dbt/work-in-cloud.qmd
- text: "---"
- text: 'Summary'
href: pages/manuals/dbt/summary.qmd
- id: git-github
contents:
- text: 'Overview'
href: pages/manuals/git-github/overview.qmd
- text: "---"
- section: 'Why learn Git/GitHub?'
contents:
- text: '1. Version Control'
href: pages/manuals/git-github/case-study-version-control.qmd
- text: '2. Project organization'
href: pages/manuals/git-github/case-study-project-transition-management.qmd
- text: '3. Precedent'
href: pages/manuals/git-github/precedent.qmd
- text: '4. TLDR'
href: pages/manuals/git-github/why-summary.qmd
- section: 'How to Git/GitHub?'
contents:
- text: 'Teaching philosophy'
href: pages/manuals/git-github/teaching-thoughts.qmd
- text: 'Learning Objectives'
href: pages/manuals/git-github/learning-objectives.qmd
- text: 'Git Intro'
href: pages/manuals/git-github/git-intro.qmd
- text: 'Basic Git Workflow'
href: pages/manuals/git-github/git-basics.qmd
- text: 'Git vs GitHub'
href: pages/manuals/git-github/git-vs-github.qmd
- text: 'Git vs Github Desktop'
href: pages/manuals/git-github/git-vs-github-desktop.qmd
- text: 'Setup GitHub Desktop'
href: pages/manuals/git-github/install-github-desktop.qmd
- text: '1. init - create a new repo remotely'
href: pages/manuals/git-github/init.qmd
- text: '2. clone - copy online repo to local computer'
href: pages/manuals/git-github/clone.qmd
- text: '3. status - file changes of local repo'
href: pages/manuals/git-github/status.qmd
- id: welcome
contents:
- section: 'Manual: Welcome'
contents:
- text: '1. About'
href: pages/manuals/welcome/1-about.qmd
- text: '2. Core values'
href: pages/manuals/welcome/2-core-values.qmd
format:
html:
toc: true
theme:
light: [cosmo, theme.scss]
code-copy: true
code-overflow: wrap
css: styles.css
freeze: true