-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.qmd
79 lines (64 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: "Silvia Canelón, PhD"
pagetitle: "Silvia Canelón, PhD"
subtitle: "Data Analyst at the Penn Medicine<br>Center for Health Justice"
image: assets/silvia/img/skyline-philly-dual.png
image-alt: "Abstract data visualization depicting tall buildings in Philadelphia as a circle. The text inside the circle reads Philadelphia Skyline"
twitter-card:
title: Silvia Canelón, PhD
description: |
Researcher and R educator applying biomedical and spatial data science in ways that prioritize health equity.
image: assets/silvia/img/silvia-social.png
about:
template: solana
image-width: 28em
id: hero-heading
links:
- text: "{{< fa universal-access >}}"
aria-label: "Accessibility statement"
href: accessibility.qmd
- text: "{{< fa brands bluesky >}}"
aria-label: "Bluesky"
href: https://bsky.app/profile/silviacanelon.com
- icon: linkedin
aria-label: "LinkedIn"
href: https://linkedin.com/in/spcanelon
- icon: github
aria-label: GitHub
href: https://github.com/spcanelon
# - icon: mastodon
# href: https://hachyderm.io/@spcanelon
- text: "{{< ai orcid >}}"
href: https://orcid.org/0000-0003-1709-1394
- text: "{{< ai google-scholar >}}"
aria-label: "Google Scholar"
href: https://scholar.google.com/citations?user=GAzkvpcAAAAJ&hl=en&oi=ao
- text: "{{< fa envelope >}}"
aria-label: Newsletter
href: https://buttondown.com/spcanelon
page-layout: full
execute:
freeze: false
echo: false
warning: false
header-includes: >
<link rel="stylesheet" href="assets/index.css">
resources:
- assets/index.css
---
<br><br>
::: {#hero-heading}
I am a researcher and R educator with a love for community. <br>My **research** leverages electronic health record and spatial data to study the intersection of health equity and urban nature. My **community** projects value the partnership between open source tools and data literacy as a way to build power and effect change.
[Learn more about me →](/about){.about-links .subtitle}
:::
<!-- hero-heading -->
```{r write-manual-redirects}
#| eval: true
manual_redirects <-
readr::read_table(here::here("static", "_manualredirects.txt"),
col_names = FALSE) |>
dplyr::mutate(redirect = paste0(X1, " ", X2, " ", X3))
manual_redirects <- manual_redirects$redirect
# write the _redirect file
writeLines(manual_redirects, here::here("_site", "_redirects"))
```