Re-order talks

This commit is contained in:
Oliver Davies 2017-10-27 20:21:16 +01:00
parent 33a8eff77a
commit d38d6be307
27 changed files with 264 additions and 358 deletions

View file

@ -0,0 +1,52 @@
<tr class="striped--near-white">
<td class="pa2">
{{ row.event.date|date(row.event.fuzzy_date ? 'F Y' : 'j F Y') }}
{% if row.event.time is defined %}
<small class="db black-70">
{{ row.event.time }}
</small>
{% endif %}
</td>
{% if not talk_page %}
<td class="pa2">
<a href="{{ row.talk.url }}">
{{ row.talk.title }}
</a>
<small class="db black-70">
{{ row.event.type|default('Talk') }}
</small>
</td>
{% endif %}
<td class="pa2">
{% if row.event.website is not empty %}
<a href="{{ row.event.website }}">
{{ row.event.name }}
</a>
{% else %}
{{ row.event.name }}
{% endif %}
{% if row.event.location is defined %}
<small class="db black-70">
{{ row.event.location }}
</small>
{% endif %}
</td>
{% if not upcoming %}
<td class="ph2">
{% if row.event.feedback and row.event.date <= today %}
<a
href="{{ row.event.feedback }}"
class="button"
title="Read or leave feedback for this talk">
<i class="fa fa-comment-o"></i> joind.in
</a>
{% endif %}
</td>
{% endif %}
</tr>