Skip to content

Commit 846c5f0

Browse files
Invert dates and improve css of image inside reunion (#59)
* Invert dates and improve css of image inside reunion * optimize understandingk8s.jpg
1 parent fbbad6a commit 846c5f0

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed
Loading

templates/layouts/reunion.html

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,16 @@ <h2>{page.title}</h2>
3737
</div>
3838
<div class="row">
3939
<div class="span12">
40-
<h3>Résumé</h3>
41-
<table>
42-
<tr>
43-
{#if page.image??}
44-
<td style="height:225px; width:300px; padding-right:20px">
45-
<img height="225" width="300" src="{page.data.image}" />
46-
</td>
47-
{/if}
48-
<td>
49-
{#insert /}
50-
</td>
51-
</tr>
52-
</table>
40+
<h3>Résumé</h3>
41+
42+
{#if page.image??}
43+
<div style="float:left; padding-right:30px; padding-bottom:30px;">
44+
<img width="400" src="{page.data.image}"/>
45+
</div>
46+
{/if}
47+
<div>
48+
{#insert /}
49+
</div>
5350
<h3>Speakers</h3>
5451
<div class="speakers">
5552
{#for id in page.data.speakers}

templates/partials/upcoming.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ <h2 class="reunions-section-title">Soirées à venir</h2>
33

44
<div class="reunions">
55
{#if !future.isEmpty}
6-
{#for reunion in future}
6+
{#for reunion in future.reversed}
77
{#reunion-card reunion /}
88
{/for}
99
{#else}

0 commit comments

Comments
 (0)