Lava Filters - DatesFromICal
Category:Date
Description:Returns a list of upcoming dates from an iCal string or List of iCal strings.
Input: "EventItemCampuses": {
[
{
"ContactEmail": "jenny@rocksolidchurchdemo.com",
"EventItemSchedules": [
{
"Schedule": {
... ,
"iCalendarContent": "BEGIN:VCALENDAR VERSION:2.0 PRODID:-//ddaysof...",
... ,
}
}
]
}
]
}
Lava: {% assign upcomingDates = EventItemSchedules | Select:'Schedule' | Select:'iCalendarContent' | DatesFromICal:2 %}
{% for date in upcomingDates %}
- {{ date }}
{% endfor %}
{% assign upcomingEndDates = EventItemSchedules | Select:'Schedule' | Select:'iCalendarContent' | DatesFromICal:2,'enddatetime' %}
{% for endDate in upcomingEndDates %}
- {{ endDate }}
{% endfor %}
Output:
- 7/15/2015 7:00:00 PM
- 7/16/2015 7:00:00 PM
- 7/15/2015 8:00:00 PM
- 7/16/2015 8:00:00 PM