I'm trying to use the pagination object in my templates, but when I try to build out my site I get a "Cannot read property 'files' of Undefined. I'm assuming the undefined is in fact, the pagination object.
html(lang="en")
head
meta(charset="utf-8")
meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1')
meta(name="viewport", content="width=device-width")
title= Home
body
h1 Home
each article in pagination.files
article.content-article
header
span.timestamp= article.date
h2
a(href=`/${article.path}/`)= article.title
I'm trying to use the pagination object in my templates, but when I try to build out my site I get a "Cannot read property 'files' of Undefined. I'm assuming the undefined is in fact, the pagination object.
If this helps, I also have my build file.
Thank you for your time.