diff options
Diffstat (limited to 'src/blog.njk')
-rw-r--r-- | src/blog.njk | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/blog.njk b/src/blog.njk deleted file mode 100644 index 9998e70..0000000 --- a/src/blog.njk +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: base -title: Blog ---- -<div role="feed" aria-busy="false"> -{% for post in collections.posts %} - <article aria-posinset="{{loop.index}}" aria-setsize="{{loop.len}}"> - <h1> - <a href="{{post.url}}">{{post.data.title}}</a> - </h1> - <small> - <time datetime="{{page.date.toISOString()}}">{{page.date.toDateString()}}</time> - <a rel=author href="{{metadata.author.url}}">{{ metadata.author.name }}</a> - </small> - <p>{{post.data.description}}</p> - </article> -{% endfor %} -</div> |