@@ -25,6 +25,10 @@ excerpt: <p style="color:white;text-align:center;font-weight:bold;">Goethe Unive
25
25
box-shadow : 0 4px 8px rgba (0 ,0 ,0 ,0.1 );
26
26
background-color : white ;
27
27
padding : 1rem ;
28
+ display : flex ;
29
+ flex-direction : column ;
30
+ align-items : center ;
31
+ justify-content : center ;
28
32
}
29
33
30
34
.custom-card {
@@ -34,13 +38,17 @@ excerpt: <p style="color:white;text-align:center;font-weight:bold;">Goethe Unive
34
38
box-shadow : 0 4px 8px rgba (0 ,0 ,0 ,0.1 );
35
39
background-color : white ;
36
40
padding : 1rem ;
37
- height : 100% ; /* Ensure consistent height */
41
+ display : flex ;
42
+ flex-direction : column ;
43
+ align-items : center ;
44
+ justify-content : center ;
38
45
}
39
46
40
47
.card-body {
41
48
width : 100% ;
42
49
display : flex ;
43
- text-align : center ;
50
+ flex-direction : column ;
51
+ align-items : left ;
44
52
gap : 0.1rem ;
45
53
}
46
54
@@ -266,7 +274,7 @@ body {
266
274
</p>
267
275
</div>
268
276
</div>
269
- <!-- Speakers Section -->
277
+ <!-- Speakers Section -->
270
278
<div class =" row mb-4 " >
271
279
<div class="col-md-12">
272
280
<h5 class="section-title">Speakers</h5>
@@ -287,31 +295,31 @@ body {
287
295
</div>
288
296
{% endfor %}
289
297
</div>
298
+ <!-- Speaker Details Section -->
299
+ {% for speaker in site.data.winter_school_speakers %}
300
+ <div id="speaker-details-{{ speaker.id }}" class="speaker-details">
301
+ <h4>{{ speaker.name }}</h4>
302
+ <p class="text-muted">{{ speaker.affiliation }}</p>
303
+ <div class="mt-4">
304
+ <p>{{ speaker.bio }}</p>
305
+ {% if speaker.title %}
306
+ <h5 class="mt-4">{{ speaker.title }}</h5>
307
+ {% endif %}
308
+ {% if speaker.abstract %}
309
+ <p class="mt-3">{{ speaker.abstract }}</p>
310
+ {% endif %}
311
+ </div>
312
+ </div>
313
+ {% endfor %}
290
314
</div>
291
315
</div >
292
- <!-- Speaker Details Section -->
293
- {% for speaker in site.data.winter_school_speakers %}
294
- <div id =" speaker-details-{{ speaker.id }} " class =" speaker-details " >
295
- <h4 >{{ speaker.name }}</h4 >
296
- <p class =" text-muted " >{{ speaker.affiliation }}</p >
297
- <div class =" mt-4 " >
298
- <p >{{ speaker.bio }}</p >
299
- {% if speaker.title %}
300
- <h5 class =" mt-4 " >{{ speaker.title }}</h5 >
301
- {% endif %}
302
- {% if speaker.abstract %}
303
- <p class =" mt-3 " >{{ speaker.abstract }}</p >
304
- {% endif %}
305
- </div >
306
- </div >
307
- {% endfor %}
308
- <div class =" row mb-4 " >
309
- <div class =" col-md-12 " >
310
- <h5 class =" section-title " >Sponsors</h5 >
311
- <div class =" image-container " >
312
- <a href =" https://www.german-u15.de/ " ><img src =" /assets/images/winterschool/German_U15.png " alt =" GermanU15 Logo " ></a >
313
- <a href =" https://www.gif.org.il/ " ><img src =" /assets/images/winterschool/giflogo.png " alt =" GIF Logo " ></a >
314
- <a href =" https://www.minerva.mpg.de/80020/minerva-center-for-human-intelligence-in-immersive-augmented-and-mixed-realities " ><img src =" /assets/images/winterschool/minervacenter.png " alt =" minervacenter Logo " ></a >
316
+ <div class="row mb-4">
317
+ <div class="col-md-12">
318
+ <h5 class="section-title">Sponsors</h5>
319
+ <div class="image-container">
320
+ <a href="https://www.german-u15.de/"><img src="/assets/images/winterschool/German_U15.png" alt="GermanU15 Logo" ></a>
321
+ <a href="https://www.gif.org.il/"><img src="/assets/images/winterschool/giflogo.png" alt="GIF Logo"></a>
322
+ <a href="https://www.minerva.mpg.de/80020/minerva-center-for-human-intelligence-in-immersive-augmented-and-mixed-realities"><img src="/assets/images/winterschool/minervacenter.png" alt="minervacenter Logo"></a>
315
323
</div>
316
324
</div>
317
325
</div>
0 commit comments