Skip to content

Instantly share code, notes, and snippets.

@camilopayan
camilopayan / list-upcoming-dates.html
Created December 7, 2017 06:58
I'm trying to get the events whose date is upcoming (after now) and that's failing.
<ul class="event_list">
{{ range (.Data.Pages.ByParam "event_data.date") }}
{{ if isset .Params "event_data" }}
{{ if ge (time (.Param "event_data.date")).Unix now.Unix }}
<li class="grid-margin-x grid-x">
<div class="cell medium-3 date">
<div class="inner_date">{{ dateFormat "Jan 2" (.Param "event_data.date") }}</div>
</div>
<div class="cell auto">
<a href="{{.Permalink}}" class="title h4">{{.Title}}</a>