A web application allowing people to create an account, configure a profile, and share a list of URLs on that profile.
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.
 
 
 
 

21 lines
583 B

extends ../layouts/main
block content
.uk-margin
div(uk-grid)
.uk-width-expand
h1 Newsletters
.uk-width-auto
a(href="/admin/newsletter/compose").uk-button.dtp-button-primary
span
i.fas.fa-plus
span.uk-margin-small-left New Newsletter
.uk-margin
if (Array.isArray(newsletters) && (newsletters.length > 0))
ul.uk-list
each newsletter in newsletters
li
a(href=`/admin/newsletter/${newsletter._id}`)= newsletter.title
else
div There are no newsletters at this time.