-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcollege-captains.html
More file actions
123 lines (123 loc) · 3.46 KB
/
college-captains.html
File metadata and controls
123 lines (123 loc) · 3.46 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
---
title: College Captains
stylesheets:
- /styles/college-captains.css
Colleges:
- College: Balliol
img: balliol
- College: Brasenose
img: brasenose
Captain: andrew.achler@bnc.ox.ac.uk
- College: Christ Church
img: christ-church
- College: Corpus Christi
img: corpus-christi
- College: Exeter
img: exeter
- College: Hertford
img: hertford
Captain: david.proudlove@hertford.ox.ac.uk
- College: Jesus
img: jesus
Captain: shorief.ali@jesus.ox.ac.uk
- College: Keble
img: keble
Captains:
- lakshmi.manchikanti@keble.ox.ac.uk
- ayush.mehrotra@keble.ox.ac.uk
- College: Kellogg
img: kellogg
Captain: seema.athmeeya@kellogg.ox.ac.uk
- College: Lady Margaret Hall
img: lady-margaret-hall
Captain: robin.wopalenski@lmh.ox.ac.uk
- College: Magdalen
img: magdalen
Captains:
- george.eustace@magd.ox.ac.uk
- sarah.shah@magd.ox.ac.uk
- College: Mansfield/Merton
img: mansfield
img2: merton
Captain: kwan.cheung@mansfield.ox.ac.uk
- College: Nuffield
img: nuffield
Captain: dilan.yang@nuffield.ox.ac.uk
- College: New
img: new
Captain: christopher.howe@new.ox.ac.uk
- College: Oriel
img: oriel
Captain: theodore.morrissey@oriel.ox.ac.uk
- College: Pembroke
img: pembroke
Captain: sai.thokala@pmb.ox.ac.uk
- College: Queen's
img: queens
Captain: karthik.saravanan@queens.ox.ac.uk
- College: Somerville
img: somerville
- College: St Anne's/Wolfson
img: st-annes
img2: wolfson
Captain: kelvin.yu@st-annes.ox.ac.uk
- College: St Catherine's
img: st-catherines
- College: St Edmund Hall
img: st-edmund
Captains:
- tehillah.campbell@seh.ox.ac.uk
- john.duale@seh.ox.ac.uk
- College: St John's
img: st-johns
Captains:
- christopher.liu@sjc.ox.ac.uk
- melanie.henin@sjc.ox.ac.uk
- College: St Hilda's
img: st-hildas
- College: St Peter's
img: st-peters
- College: Trinity
img: trinity
Captains:
- ashley.maclauchlan@trinity.ox.ac.uk
- xiyan.pu@trinity.ox.ac.uk
- College: University
img: university
Captains:
- hussain.mussa@univ.ox.ac.uk
- jeremy.liu@univ.ox.ac.uk
- College: Worcester
img: worcester
- College: Wadham
img: wadham
Captain: leo.tyrpak@wadham.ox.ac.uk
---
<div class="centering">
<table cellspacing="0" cellpadding="0" class="responsive-table captains-table">
<thead>
<th scope="col">College</th>
<th scope="col">Captains</th>
</thead>
{% for college in page.Colleges %}
<tr>
<th scope="row">
{% if college.img2%}
<img src="/assets/colleges/{{college.img}}.svg" class="left" alt="{{college.College}}"><img src="/assets/colleges/{{college.img2}}.svg" class="right" alt="{{college.College}}"><span style="padding-right: 0.5em"></span>
{% else %}
<img src="/assets/colleges/{{college.img}}.svg" style="height: 2em;vertical-align: middle; padding-right:0.5em; " alt="{{college.College}}">
{% endif %}
{{college.College}}</th>
{% if college.Captains %}
<td data-title="Captains" colspan="3">
{% for captain in college.Captains %}
<a class="captain" href="mailto:{{captain}}">{{captain}}</a>
{% endfor %}
</td>
{% elsif college.Captain %}
<td data-title="Captain" colspan="3"><a class="captain" href="mailto:{{college.Captain}}">{{college.Captain}}</td>
{% endif %}
</tr>
{% endfor %}
</table>
</div>