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.
18 lines
586 B
18 lines
586 B
extends ../layouts/main
|
|
block content
|
|
|
|
section.uk-section.uk-section-default
|
|
.uk-container
|
|
article(dtp-post-id= post._id)
|
|
.uk-margin
|
|
div(uk-grid)
|
|
.uk-width-expand
|
|
h1.article-title= post.title
|
|
if user && user.flags.isAdmin
|
|
.uk-width-auto
|
|
a(href=`/admin/post/${post._id}`).uk-button.dtp-button-text EDIT
|
|
.uk-text-lead= post.summary
|
|
.uk-margin
|
|
.uk-article-meta= moment(post.created).format('MMM DD, YYYY [at] hh:mm a')
|
|
.uk-margin
|
|
!= post.content
|