calendar.list
Displays a calendarlist
Parameters
{{ calendar.list(id, title, count, color, repeat, calendar) }}
id
unique id for this widget (optional)
title
a title to display (optional)
count
the number of displayed calendar entries (optional, default 25)
color
one color for all or a list of colors for each calendar (optional, grey or as defined in configuration)
repeat
the refresh interval for this widget (optional, default 1h)
calendar
name of calendars to show, multiples in array form (optional, default: as defined in configuration)
Examples
{{ calendar.list('', '', 3) }}
Events of one calendar only:
{{ calendar.list('', 'Events in "Personal"', 3, '', '', 'Personal') }}
Calendars with individual colors:
{{ calendar.list('', '', 3, ['#993399','green'], '', ['Personal','Waste']) }}
Author: Martin Gleiß, Stefan Widmer