Re-organise partials

This commit is contained in:
Oliver Davies 2019-01-05 00:17:55 +00:00
parent 37c766a802
commit 8829dce0f4
11 changed files with 10 additions and 43 deletions

View file

@ -43,7 +43,7 @@ talks:
{% set upcoming_talks = getUpcomingTalks(data.talks|merge(page.talks), site.events) %}
{% if not upcoming_talks.empty %}
{% include "talks-table" with {
{% include "talks/table" with {
talks: upcoming_talks,
upcoming: true,
} %}
@ -55,7 +55,7 @@ talks:
<div>
<h2 class="mb-2">Previous Talks</h2>
{% include "talks-table" with {
{% include "talks/table" with {
talks: getPastTalks(data.talks|merge(page.talks), site.events)
} %}
</div>