Split into multiple filters
This commit is contained in:
parent
781bb446fd
commit
3ef25801b5
4 changed files with 83 additions and 19 deletions
source
|
@ -2,7 +2,7 @@
|
|||
<h2>Events</h2>
|
||||
|
||||
{% include "talks-table" with {
|
||||
talks: { talks: [page], events: site.events }|format_talks|reverse,
|
||||
talks: { talks: [page], events: site.events }|all_talks|reverse,
|
||||
talk_page: true
|
||||
} %}
|
||||
</div>
|
||||
|
|
|
@ -16,7 +16,7 @@ talks:
|
|||
<p>Here are a list of my previous conference and user group talks:</p>
|
||||
|
||||
{% include "talks-table" with {
|
||||
talks: { talks: data.talks|merge(page.talks), events: site.events }|format_talks(false, true)
|
||||
talks: { talks: data.talks|merge(page.talks), events: site.events }|past_talks
|
||||
} %}
|
||||
|
||||
<p>Upcoming talks can be found on the <a href="{{ site.url }}/talks">talks page</a>.</p>
|
||||
|
|
|
@ -10,7 +10,7 @@ use: [talks]
|
|||
|
||||
<h2>Upcoming Talks</h2>
|
||||
|
||||
{% set upcoming_talks = { talks: data.talks, events: site.events }|format_talks(true) %}
|
||||
{% set upcoming_talks = { talks: data.talks, events: site.events }|upcoming_talks %}
|
||||
{% if upcoming_talks %}
|
||||
{% include "talks-table" with { talks: upcoming_talks } %}
|
||||
{% else %}
|
||||
|
@ -20,7 +20,7 @@ use: [talks]
|
|||
<h2>Last 5 Talks</h2>
|
||||
|
||||
{% include "talks-table" with {
|
||||
talks: { talks: data.talks, events: site.events }|format_talks(false, true)|slice(0,5)
|
||||
talks: { talks: data.talks, events: site.events }|past_talks|slice(0,5)
|
||||
} %}
|
||||
|
||||
<p>All previous talks can be found in the <a href="{{ site.url }}/talks/archive">talks archive</a>.</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue