1234567891011121314151617181920212223 |
- extends layout
- block append vars
- - bodyclass = 'article-detail'
- block prepend title
- | #{ page.title + ' - '}
- block header
- include author
- h1= page.title
- p.author
- | #{ 'Written by ' }
- +author(page.metadata.author)
- block content
- article.article
- section.content!= typogr(page.html).typogrify()
- block prepend footer
- div.nav
- a(href=contents.index.url) « Full blog
|