data. Made a lot of progress on #1 with additional work on the rendering templates.
20 lines
572 B
Text
20 lines
572 B
Text
extends admin-layout
|
|
|
|
block content
|
|
div(class="row")
|
|
include ./admin-sidebar.jade
|
|
|
|
div(class="col-sm-10 col-sm-offset-2 main")
|
|
|
|
include ./admin-messages.jade
|
|
|
|
div(class='page-header row')
|
|
h3 #{post.get('title')}
|
|
|
|
div(class='row')
|
|
| #{post.getShortDate()} --
|
|
a(href="/admin/post/edit/#{post.get('uuid')}") Edit
|
|
| -
|
|
a(href="/admin/post/build/#{post.get('uuid')}") Build
|
|
|
|
div(class='row') !{post.renderMarkdown()}
|