summaryrefslogtreecommitdiff
path: root/_includes/blog-list.njk
diff options
context:
space:
mode:
Diffstat (limited to '_includes/blog-list.njk')
-rw-r--r--_includes/blog-list.njk6
1 files changed, 6 insertions, 0 deletions
diff --git a/_includes/blog-list.njk b/_includes/blog-list.njk
new file mode 100644
index 0000000..8c1a6ed
--- /dev/null
+++ b/_includes/blog-list.njk
@@ -0,0 +1,6 @@
+<div> {% for post in collections.blog | reverse %}
+ <a href="{{ post.url }}" class="blogpost">
+ <h3>{{ post.data.title }}</h3>
+ <small>{{ post.date | date }}<span style="float:right;">{{ post.data.keywords }} | {{ post.url }}</span></small>
+ </a><br> {% endfor %}
+</div>