{% import 'components/category-overview-card.html' as category_overview_card %}
{% import 'components/events-card.html' as events_card %}
Announcements
{% set items = [
{
month: 'FEB',
day: 18,
title: 'Promotional Advertising Specialty',
description: 'Differentiate and you stand out in a crowded marketplace. Present your uniqueness and ...'
},
{
month: 'FEB',
day: 17,
title: 'Rebranding Strategy',
description: 'A good logo works in the simplest form. It is a memorable representation of your brand and ...'
},
{
month: 'FEB',
day: 11,
title: 'Promotional Advertising Specialty',
attachment: true
}
] %}
{{ events_card.component(
title='Latest Announcements',
count=3,
items=items,
alert=true
) }}