Limit previous talks on talks page, add talks archive

This commit is contained in:
Oliver Davies 2017-03-19 11:02:31 +00:00
parent 64bf53cc69
commit d33e78a2fa
3 changed files with 23 additions and 5 deletions

View file

@ -29,15 +29,16 @@ use: [talks, posts]
<h2>Upcoming Talks</h2>
{% include "talks-table" with {
events: upcoming_events,
events: upcoming_events|sortbyfield('date'),
show_talk: true
} %}
<h2>Previous Talks</h2>
<h2>Last 5 Talks</h2>
{% include "talks-table" with {
events: past_events,
reverse_order: true,
events: past_events|sortbyfield('date')|reverse[:5],
show_feedback: true,
show_talk: true
} %}
<p>You can view more talks in the <a href="/talks/archive">talks archive</a>.</p>