crunch-node/views/render-post-index.jade
Andrew Davidson dc8639c5ef Fixed #19 with the addition of some new modules to parse the image EXIF
data.

Made a lot of progress on #1 with additional work on the rendering
templates.
2016-01-24 22:05:38 -05:00

19 lines
373 B
Text

extends render-layout
block content
h1 #{pageTitle}
each post in posts
include ./partial-post.jade
div
if prev == 0
a(href="/blog/") Newer
if prev > 0
a(href="/blog/#{prev}/") Newer
if prev >= 0 && next > 0
|  — 
if next > 0
a(href="/blog/#{next}/") Older