Skip to content

Commit fedc7b4

Browse files
authored
Merge pull request #24 from the-turing-way/presenter_names
Place presenter photographs in grid, add names
2 parents ed8f872 + 15c8ef9 commit fedc7b4

File tree

2 files changed

+84
-9
lines changed

2 files changed

+84
-9
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
url = https://github.com/hakimel/reveal.js.git
44
[submodule "assets/fontawesome"]
55
path = assets/fontawesome
6-
url = git@github.com:FortAwesome/Font-Awesome.git
6+
url = https://github.com/FortAwesome/Font-Awesome.git

index.html

Lines changed: 83 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@
4747
flex: auto;
4848
overflow-x: auto;
4949
}
50+
&.container {
51+
display: grid;
52+
grid-template-columns: auto auto auto auto;
53+
& div {
54+
border: 3px solid var(--jp-orange);
55+
padding: 5px;
56+
text-align: center;
57+
}
58+
}
5059
}
5160
.fragment.blur {
5261
/* Blur fragment */
@@ -124,14 +133,80 @@ <h1 class="r-fit-text">
124133
</section>
125134
<!-- Introduction to presenters -->
126135
<section>
127-
<img src="static/angus.jpg" width="200" />
128-
<img src="static/arielle.jpg" width="200" />
129-
<img src="static/chris.jpg" width="200" />
130-
<img src="static/franklin.jpg" width="200" />
131-
<img src="static/jim.jpg" width="200" />
132-
<img src="static/kirstie.jpg" width="200" />
133-
<img src="static/robert.jpg" width="200" />
134-
<img src="static/rowan.png" width="200" />
136+
<div class="container">
137+
<div>
138+
<img
139+
src="static/angus.jpg"
140+
alt="Headshot of Angus, a smiling white man in his late, late twenties with stubble and medium length dark brown hair. He is wearing a mustard orange jumper and standing against a cream background."
141+
width="200"
142+
/>
143+
<br />
144+
Angus
145+
</div>
146+
<div>
147+
<img
148+
src="static/arielle.jpg"
149+
alt="Photograph of Arielle Bennett, a white woman with black framed glasses, brown hair and red lipstick, wearing a green jumper, with a conference presentation just visible in the background"
150+
width="200"
151+
/>
152+
<br />
153+
Arielle
154+
</div>
155+
<div>
156+
<img
157+
src="static/chris.jpg"
158+
alt="Headshot of Chris Holdgraf, a smiling man with short blondish-brown hair and a beard, wearing a blue patterned shirt against a gray background."
159+
width="200"
160+
/>
161+
<br />
162+
Chris
163+
</div>
164+
<div>
165+
<img
166+
src="static/franklin.jpg"
167+
alt="Photograph of Franklin."
168+
width="200"
169+
/>
170+
<br />
171+
Franklin
172+
</div>
173+
<div>
174+
<img
175+
src="static/jim.jpg"
176+
alt="Photograph of Jim, a white man in his 30s. He has very short fair hair and a short beard. He is wearing headphones and taking the photograph using his camera and a mirror."
177+
width="200"
178+
/>
179+
<br />
180+
Jim
181+
</div>
182+
<div>
183+
<img
184+
src="static/kirstie.jpg"
185+
alt="Photograph of Kirstie - a white woman in her 40s - and her daughter Mackenzie who was 2 at the time. They are hiking up a green, grassy hill in the Lake District in the UK. Mackenzie is in a backpack looking over Kirstie's shoulder. They both have blonde hair and are smiling at the camera."
186+
width="200"
187+
/>
188+
<br />
189+
Kirstie
190+
</div>
191+
<div>
192+
<img
193+
src="static/robert.jpg"
194+
alt="Photograph of Robert, a white man in his late 30s. He has graying dark brown hair and a beard, is wearing glasses and a green shirt."
195+
width="200"
196+
/>
197+
<br />
198+
Robert
199+
</div>
200+
<div>
201+
<img
202+
src="static/rowan.png"
203+
alt="Photograph of Rowan."
204+
width="200"
205+
/>
206+
<br />
207+
Rowan
208+
</div>
209+
</div>
135210
</section>
136211
<!-- Schedule -->
137212
<section>

0 commit comments

Comments
 (0)