Combine partials
This commit is contained in:
parent
11d37468a8
commit
94779c0907
|
@ -1 +0,0 @@
|
||||||
<script async class="speakerdeck-embed" data-id="{{ data_id }}" data-ratio="1.29456384323641" src="//speakerdeck.com/assets/embed.js"></script>
|
|
|
@ -1,59 +0,0 @@
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{ row.event.date|date(row.event.fuzzy_date ? 'F Y' : 'j F Y') }}
|
|
||||||
|
|
||||||
{% if row.event.time is defined %}
|
|
||||||
<div class="text-xs text-grey-dark">
|
|
||||||
{{ row.event.time }}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
|
|
||||||
{% if not talk_page %}
|
|
||||||
<td>
|
|
||||||
{% if row.talk.url is not empty %}
|
|
||||||
<a href="{{ row.talk.url }}">
|
|
||||||
{{ row.talk.title }}
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
{{ row.talk.title }}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<div class="text-xs text-grey-dark">
|
|
||||||
{% if row.talk.type %}
|
|
||||||
{{ row.talk.type }}
|
|
||||||
{% else %}
|
|
||||||
{{ row.event.type|default('Talk') }}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<td>
|
|
||||||
{% 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 %}
|
|
||||||
<div class="text-xs text-grey-dark">
|
|
||||||
{{ row.event.location }}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
|
|
||||||
{% if not upcoming %}
|
|
||||||
<td>
|
|
||||||
{% if row.event.joindin and row.event.date <= today %}
|
|
||||||
<a href="{{ row.event.joindin }}"
|
|
||||||
class="button"
|
|
||||||
title="Read or leave feedback for this talk">
|
|
||||||
<i class="fa fa-comment-o"></i> joind.in
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
{% endif %}
|
|
||||||
</tr>
|
|
|
@ -16,10 +16,68 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for row in talks %}
|
{% for talk in talks %}
|
||||||
{% include "talks-table-row" with {
|
<tr>
|
||||||
today: 'today'|date('Y-m-d')
|
<td>
|
||||||
} %}
|
{{ talk.event.date|date(talk.event.fuzzy_date ? 'F Y' : 'j F Y') }}
|
||||||
|
|
||||||
|
{% if talk.event.time is defined %}
|
||||||
|
<div class="text-xs text-grey-dark">
|
||||||
|
{{ talk.event.time }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
{% if not talk_page %}
|
||||||
|
<td>
|
||||||
|
{% if talk.talk.url is not empty %}
|
||||||
|
<a href="{{ talk.talk.url }}">
|
||||||
|
{{ talk.talk.title }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
{{ talk.talk.title }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="text-xs text-grey-dark">
|
||||||
|
{% if talk.talk.type %}
|
||||||
|
{{ talk.talk.type }}
|
||||||
|
{% else %}
|
||||||
|
{{ talk.event.type|default('Talk') }}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<td>
|
||||||
|
{% if talk.event.website is not empty %}
|
||||||
|
<a href="{{ talk.event.website }}">
|
||||||
|
{{ talk.event.name }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
{{ talk.event.name }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if talk.event.location is defined %}
|
||||||
|
<div class="text-xs text-grey-dark">
|
||||||
|
{{ talk.event.location }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
|
||||||
|
{% if not upcoming %}
|
||||||
|
<td>
|
||||||
|
{% if talk.event.joindin and talk.event.date <= 'today'|date('Y-m-d') %}
|
||||||
|
<a
|
||||||
|
href="{{ talk.event.joindin }}"
|
||||||
|
class="button"
|
||||||
|
title="Read or leave feedback for this talk"
|
||||||
|
>
|
||||||
|
<i class="fa fa-comment-o"></i> joind.in
|
||||||
|
</a>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
{% endif %}
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
<p>
|
|
||||||
<blockquote class="twitter-tweet" data-cards="hidden" lang="en">
|
|
||||||
{{ content|raw }}
|
|
||||||
</blockquote>
|
|
||||||
</p>
|
|
Loading…
Reference in a new issue