You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
447 B

extends ../layouts/main
block content
include components/announcement
section.uk-section.uk-section-default.uk-section-small
.uk-container
h1 #{site.name} Announcements
if Array.isArray(announcements) && (announcements.length > 0)
ul.uk-list.uk-list-divider
each announcement in announcements
li
+renderAnnouncement(announcement)
else
div There are no announcements.