-
Notifications
You must be signed in to change notification settings - Fork 32
/
contact.rkt
162 lines (133 loc) · 5.8 KB
/
contact.rkt
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
#lang scribble/html
@require["templates.rkt"]
@(define (linksym name link)
@a[href: link]{@name @span[class: "glyphicon glyphicon-link"]})
@doctype{html}
@html[lang: "en"]{
@header{Contact}
@body[id: "pn-top"]{
@navbar{Contact}
@subpage-title{Contact}
@div[class: "pn-main-wrapper"]{
@div[class: "content"]{
@div[class: "container"]{
@center{
@div[class: "row"]{
@h2{Who's in charge?}
@div[class: "row"]{
@h3{Inside PRL}
@div[class: "row"]{
@div[class: "col-xs-6 col-md-4 pad-contact"]{
@h4{PL Seminar and Internal Talks} @a[href: "mailto:[email protected]"]{Steven Holtzen}, @a[href: "mailto:[email protected]"]{Luna Phipps-Costin}
}
@div[class: "col-xs-6 col-md-4 pad-contact"]{
@h4{PL Seminar, Junior @br{}
@small{@linksym["Website" "https://github.com/nuprl/prl-seminar-junior"]}}
@a[href: "mailto:[email protected]"]{Liam DeVoe}, @a[href: "mailto:[email protected]"]{Sarah Marshall}
}
@div[class: "col-xs-6 col-md-4 pad-contact"]{
@h4{ZED-talks} @a[href: "mailto:[email protected]"]{Cameron Moy}
}
}
@div[class: "col-xs-6 col-md-12 pad-contact"]{
@h4{Applications for Internship, PhD, Postdoc} @a[href: "mailto:[email protected]"]{Jan Vitek}
}
}
@div[class: "row"]{
@h3{Website}
@div[class: "row"]{
@div[class: "col-xs-6 col-md-4 pad-contact"]{
@h4{Webmaster} @a[href: "mailto:[email protected]"]{Liam DeVoe}
}
@div[class: "col-xs-6 col-md-4 pad-contact"]{
@h4{Blog Editor} @a[href: "mailto:[email protected]"]{Katie Hough}
}
@div[class: "col-xs-12 col-md-4 pad-contact"]{
@h4{Publication Page Maintainer} @a[href: "mailto:[email protected]"]{Andrew Wagner}
}
}
@div[class: "row"]{
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@h4{People Page Maintainer} @a[href: "mailto:[email protected]"]{Farideh Khalili}
}
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@h4{Teaching & Software Pages Maintainer} @a[href: "mailto:[email protected]"]{Farideh Khalili}
}
}
}
@div[class: "row"]{
@h3{Social}
@div[class: "row"]{
@div[class: "col-xs-12 col-md-4 pad-contact"]{
@h4{PRL Social} @a[href: "mailto:[email protected]"]{Michelle Thalakottur} @br{}
PRL parties, tea time, bingewatching
}
@div[class: "col-xs-12 col-md-4 pad-contact"]{
@h4{Twitter @br{}
@small{@linksym["@neu_prl" "https://twitter.com/neu_prl"]}}
@a[href: "mailto:[email protected]"]{John Li}
}
}
@div[class: "row"]{
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@h4{Coffee Czar} @a[href: "mailto:[email protected]"]{Minsung Cho}, @a[href: "mailto:[email protected]"]{Ryan Doenges}
}
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@h4{Tea Tzar} @a[href: "mailto:[email protected]"]{Max Bernstein}
}
}
}
@div[class: "row"]{
@h3{Contact Managers}
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@a[href: "mailto:[email protected]"]{John Gouwar} @br{}
Mailing Lists: @tt{prl-all}, @tt{prl-students}@br{}
GitHub Organization: @a[href: "https://github.com/nuprl"]{@tt{NuPRL}}
}
@div[class: "col-xs-12 col-md-6 pad-contact"]{
@a[href: "mailto:[email protected]"]{Jan Vitek} @br{}
Mailing List: @tt{prl-staff}
}
}
}
}
@h2[id: "directions"]{How to find us}
@p{
@div[class: "pull-left" style: "width: 200px"]{
@pre[style: "margin: 10px"]{
440 Huntington Ave,
Boston, MA 02115
}
}
@p{
The @b{Khoury College of Computer Sciences}
is located in Building WVH
(aka West Village "H" — don't forget the H,
otherwise you won't be able to distinguish
it from WV "A" through WV "G").
}
@p{
We are diagonally across the street from the Museum of Fine Arts.
}
@p{
To get to all Khoury offices, take the elevators
opposite the big glassed-in lab on the first floor.
}
@p{
The administrative offices and mail boxes are located
in Room 202 WVH, to your right as you get off the elevator
on the second floor.
}
@p{
The PRL lab is spread across rooms 308 and 330.
Room 308 is behind the glass walls with Racket code on them.
}
@p{
Talks are often in room 366, located to your right as
you get off the elevator on the third floor.
}
@br{}
}
}
@footer{}
}}}}