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.
17 lines
533 B
17 lines
533 B
include ../announcement/components/announcement
|
|
|
|
mixin renderPageSidebar ( )
|
|
if Array.isArray(announcements) && (announcements.length > 0)
|
|
ul.uk-list.uk-margin
|
|
each announcement in announcements
|
|
li
|
|
+renderAnnouncement(announcement)
|
|
|
|
.uk-margin
|
|
+renderSectionTitle('Widget', {
|
|
label: 'Sample URL',
|
|
title: 'Sample URL Title',
|
|
url: 'https://shing.tv',
|
|
})
|
|
.sidebar-widget
|
|
p This would be your widget content if your page even has a sidebar and that sidebar has widgets.
|