-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpeople.html
More file actions
200 lines (176 loc) · 9.36 KB
/
people.html
File metadata and controls
200 lines (176 loc) · 9.36 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
---
layout: default
---
<article id="main">
<header class="special container">
<span class="icon fa-users"></span>
<h2 style="font-weight: 800">Members</h2>
</header>
<section class="wrapper style3 container special">
<h2 style="font-weight: 800">Principal Investigators</h2>
<div class="row posts people">
{% assign clab = site.categories.people | where:"category", "PI" %}
{% for post in clab %}
<div class="4u person-card">
<a href="#{{post.title}}">
<span class="image people"><img src="{{post.image-file}}" alt=""></span>
<h2 class="people name">{{post.name}}<br />{{post.surname}}</h2>
<span class="people">{{post.excerpt}}</span>
</a>
</div>
{% endfor %}
</div>
<h2 style="font-weight: 800; margin-top: 3em">Post-docs</h2>
<div class="row posts people">
{% assign clab = site.categories.people | where:"category", "postdoc" %}
{% for post in clab %}
<div class="4u person-card">
<a href="#{{post.title}}">
<span class="image people"><img src="{{post.image-file}}" alt=""></span>
<h2 class="people name">{{post.name}}<br />{{post.surname}}</h2>
</a>
</div>
{% endfor %}
</div>
<h2 style="font-weight: 800; margin-top: 3em">PhD Students</h2>
<div class="row posts people">
{% assign clab = site.categories.people | where:"category", "phd" %}
{% for post in clab %}
<div class="4u person-card">
<a href="#{{post.title}}">
<span class="image people"><img src="{{post.image-file}}" alt=""></span>
<h2 class="people name">{{post.name}}<br />{{post.surname}}</h2>
</a>
</div>
{% endfor %}
</div>
</section>
<section class="wrapper style3 container special">
<h2 style="font-weight: 800; text-align: left">INTERNS</h2>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">LAURA ŁĘPA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Student of Psychology in Management at Jagiellonian University</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">PAULINA SZYSZKA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Student of Psychology at Jagiellonian University</div>
</div>
<h2 style="font-weight: 800; text-align: left; margin-top: 3em;">ALUMNI</h2>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">ANNA ANZULEWICZ, PhD</div>
<div class="8u"style="text-align:left;">Assistant Professor at the Warsaw University, Faculty of Psychology</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">URSZULA GÓRSKA, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Post-doc at University of Wisconsin-Madison</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">MARTA ŁUKOWSKA, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Independent researcher</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">BARTOSZ MAJCHROWICZ, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Post-doc at Institute of Cognitive Neuroscience at UCL</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">SIMON HVIID DEL PIN, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Post-doc at NTNU</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">DOMINIKA DRĄŻYK, MA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">PhD student at Université catholique de Louvain</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">ZUZANNA SKÓRA, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;">Department of Computer Science, NTNU</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">KRZYSZTOF GOCIEWICZ, MA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"></div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">TOMASZ DĄBROWA-KOSTKA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"></div>
</div>
<h2 style="font-weight: 800; text-align: left; margin-top: 3em;">PAST POST-DOCS</h2>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700;">MAGDALENA REUTER, PhD</div>
<div class="8u"style="text-align:left;">Assistant Professor at the Institute of Philosophy and Sociology, Pedagogical University of Kraków</div>
</div>
<h2 style="font-weight: 800; text-align: left; margin-top: 3em;">VISITING RESEARCHERS</h2>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700;">DUNJA PAUNOVIC</div>
<div class="8u"style="text-align:left;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">NATALIA ANDRIYSNIVA</div>
<div class="8u"style="text-align:left;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">LENKA SAKALOSOVA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">ONDŘEJ BEČEV</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">LUKA JURAS</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">NADINE SPYCHALA</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<h2 style="font-weight: 800; text-align: left; margin-top: 3em;">COLLABORATORS</h2>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700;">WERONIKA KAŁWAK, PhD</div>
<div class="8u"style="text-align:left;">Assistant Professor at the Institute of Psychology, Jagiellonian University.</div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">MAREK PĘDZIWIATR, PhD</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">ONDŘEJ BEČEV</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
<div class="row posts others">
<div class="4u" style="font-family: Oswald; font-weight: 700; padding: 10px 0 0 50px;">PATRYCJA BIZOŃ</div>
<div class="8u"style="text-align:left; padding: 10px 0 0 50px;"> </div>
</div>
</section>
{% for post in site.categories.people %}
<div id="{{post.title}}" class="modalDialog">
<div class="container"> <a href="#close" title="Close" class="close">X</a>
<div class="row posts people dialog">
<div class="4u dialog">
<span class="image people dialog"><img src="{{post.image-file}}" alt=""></span>
<h2 class="people name dialog">{{post.name}}<br />{{post.surname}}</h2>
<div class="icons">
{% if post.mail %}
<a href="mailto:{{post.mail}}" class="icon circle fa-envelope-o">
</a>
{% endif %}
{% if post.website %}
<a href="{{post.website}}" class="icon circle fa-globe">
</a>
{% endif %}
{% if post.twitter %}
<a href="{{post.twitter}}" class="icon circle fa-twitter">
</a>
{% endif %}
{% if post.researchgate %}
<a href="{{post.researchgate}}" class="icon circle fa-graduation-cap">
</a>
{% endif %}
</div>
</div>
<div class="8u dialog text">
<span class="people dialog">{{post.content}}</span>
</div>
</div>
</div>
</div>
{% endfor %}
</article>