-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.qmd
More file actions
229 lines (204 loc) · 5.4 KB
/
about.qmd
File metadata and controls
229 lines (204 loc) · 5.4 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
---
pagetitle: "Philly Social Justice Hackathon"
page-layout: custom
section-divs: false
toc: false
anchor-sections: true # not working?
aliases:
- index.html
execute:
echo: false
output: asis
warning: false
---
:::::: {.content-block}
```{r workspace}
#| include: false
library(htmltools)
library(commonmark)
library(glue)
general_card_div <- function(..., lg = 3, md = 2, sm = 2, xs = 1) {
class_info <-
paste(
"card", # card class
# about card
"rounded-3", # border-radius = 0.3rem
"m-2", # margin all sides: 0.5rem
# about grid placement
glue("g-col-lg-{12/lg}"), # when >=1200px use {lg} cols per card (ex. 3 across)
glue("g-col-md-{12/md}"), # when >= 992px use {md} cols per card (ex. 2 across)
glue("g-col-sm-{12/sm}"), # when >= 768px use {sm} cols per card (ex. 2 across)
glue("g-col-{12/xs}") # when < 576px use {xs} cols per card (ex. 1 across)
)
div(
class = class_info,
style = "background: #8f4b99;",
...
)
}
```
## About the Event
::: {.grid}
::: {.g-col-lg-8 .g-col-12}
Together, attendees will work on technology solutions to respond to specific justice needs of residents and neighborhoods most impacted by social, economic, and environmental injustices in Philadelphia.
**The event is free to attend and open to all participants, regardless of coding experience or affiliation with an organization or university.**
:::
:::{.g-col-lg-4 .g-col-8 .g-start-3}

:::
:::
::::::
:::::: {.content-block}
```{r organizer-gallery}
organizers <- local({
df <- read.csv("assets/about--organizers.csv", na.strings = "-")
df[order(df$name), ]
})
advisors <- local({
df <- read.csv("assets/about--advisors.csv", na.strings = "-")
df[order(df$name), ]
})
organizers <- organizers[organizers$name %in% setdiff(organizers$name, advisors$name), ]
add_profile_card <- function(person, personList) {
info <-
personList[personList$name == person, ] |>
as.list()
general_card_div(
div(
class = "card-body text-center",
# image
a(
img(src = file.path("assets/organizers", info$img), height = "100px"),
href = info$linkedin
),
# name
p(
class = "text-center mt-3",
a(info$name, href = info$linkedin),
style = "font-size: 1.2rem;"
),
p(
class = "text-center person-bio",
HTML(commonmark::markdown_html(info$bio))
)
)
)
}
# Render section
h2("Organizers")
lapply(
organizers$name,
\(x) add_profile_card(x, organizers)
) |>
div(class = "list grid")
h2("Advisors")
lapply(
advisors$name,
\(x) add_profile_card(x, advisors)
) |>
div(class = "list grid")
```
::::::
:::::: {.content-block}
## Our Sponsors {#sponsors}
```{r}
div(
class="sponsor-logos",
a(
href="https://drexel.edu/law/",
target="_blank",
img(
src="assets/sponsors/drexel-law-school.png",
alt="Drexel Law School Logo"
)
),
a(
href="https://www.law.upenn.edu/",
target="_blank",
img(
src="assets/sponsors/fpi logo.png",
alt="Penn Law School Logo"
)
),
a(
href="https://law.temple.edu/ilit/",
target="_blank",
img(
src="assets/sponsors/iLIT__White_Vert_Red_Black_Horiz (1).png",
alt="Temple iLIT Logo"
)
),
a(
href="https://www.meetup.com/LegalHackersPA/",
target="_blank",
img(
src="assets/sponsors/philly-legal-hackers.gif",
alt="Philadelphia Legal Hackers Logo"
)
),
a(
href="https://www.rladiesphilly.org/",
target="_blank",
img(
src="assets/sponsors/rladies logo.png",
alt="R Ladies Philly Logo"
)
),
a(
href="https://codeforphilly.org/",
target="_blank",
img(
src="assets/sponsors/code-for-philly.png",
alt="Code for Philly Logo"
)
),
a(
href="https://www.pit-un.org",
target="_blank",
img(
src="assets/sponsors/pit-un.png",
alt="PIT-UN Logo",
style="max-height: 30px;"
)
),
a(
href="https://neota.com/",
target="_blank",
img(
src="assets/sponsors/neota-logo.png",
alt="Neota Logo"
)
),
a(
href="https://www.gavel.io",
target="_blank",
img(
src="assets/sponsors/Gavel logo with transparent background.png",
alt="Gavel Logo"
)
),
#a(
# href="https://badgecert.com/",
# target="_blank",
# img(
# src="assets/sponsors/BadgeCert Logo.png",
# alt="BadgeCert Logo"
# )
#)
)
div(
class="text-center mt-4 p-3 rounded-3",
style="border: 1px solid white; max-width: 600px; margin: 0 auto;",
p("Winners of the Social Justice Hackathon will advance to the Information Architecture Conference design hackathon, where IAC26 attendees will collaborate on design and strategy for that project."),
a(
href="https://www.theiaconference.com/",
target="_blank",
img(
src="assets/sponsors/IAC26-Graphic.jpg",
alt="IAC 2026 Graphic",
style="max-width: 450px; width: 100%; border-radius: 0.3rem;"
)
)
)
```
::::::