-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.qmd
61 lines (49 loc) Β· 1.76 KB
/
index.qmd
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
---
title: "Data Visualization"
subtitle: "Use R, ggplot2, and the principles of graphic design to create beautiful and truthful visualizations of data"
details: |
PMAP 8101 β’ Summer 2023<br>Andrew Young School of Policy Studies<br>Georgia State University
sidebar: false
toc: false
page-layout: full
format:
html:
template-partials:
- html/home/title-block.html
course-logo: /files/course-icon.png
---
```{r set-dependencies, include=FALSE}
# Site-wide targets dependencies
withr::with_dir(here::here(), {
targets::tar_load(project_zips)
targets::tar_load(xaringan_slides)
targets::tar_load(xaringan_pdfs)
})
```
::: {.home}
:::: {.grid .course-details}
::: {.g-col-12 .g-col-sm-6 .g-col-md-4}
### Instructor
- {{< fa user >}} [{{< var instructor.name >}}]({{< var instructor.url >}})
- {{< fa university >}} {{< var instructor.office >}}
- {{< fa envelope >}} <a href="mailto:{{< var instructor.email >}}">{{< var instructor.email >}}</a>
- {{< fa brands twitter >}} [{{< var instructor.twitter >}}](https://www.twitter.com/{{< var instructor.twitter >}})
- {{< fa calendar-check >}} [Schedule an appointment]({{< var instructor.appointment_url >}})
:::
::: {.g-col-12 .g-col-sm-6 .g-col-md-4}
### Course details
- {{< fa calendar >}} {{< var course.days >}}
- {{< fa calendar-alt >}} {{< var course.dates >}}
- {{< fa clock >}} {{< var course.time >}}
- {{< fa location-dot >}} {{< var course.location >}}
- {{< fa brands slack >}} [Slack]({{< var course.slack >}})
:::
::: {.g-col-12 .g-col-md-4 .contact-policy}
### Contacting me
{{< var instructor.contact_policy >}}
:::
::::
```{r echo=FALSE}
knitr::include_graphics(here::here("files", "img", "dataviz-flowchart.png"), error = FALSE)
```
:::