Files
TechRadarAJR/templates/item.pug
2017-01-24 23:07:32 +01:00

25 lines
446 B
Plaintext

extends layout.pug
block vars
- var title=item.attributes.title
block content
a(href='/' + quadrantName + '.html')= translate(quadrantName)
h1 #{item.attributes.title}
= ' '
small #{item.attributes.ring}
h2 New: #{item.isNew ? 'YES' : 'NO'}
hr
section
!= item.revisions[0].body
hr
ul
each revision, index in item.revisions
if index > 0
li
= revision.version
!= revision.body