aboutsummaryrefslogtreecommitdiffstats
path: root/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/home.html')
-rw-r--r--templates/home.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/home.html b/templates/home.html
index d8efc3e..95e614c 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -28,7 +28,18 @@
{% block content %}
-<div class="panel content">
+{% for post in feed %}
+{% match post %}
+{% when HomeFeedItem::Blogpost(blogpost) %}
+{% include "blogpost-panel.html" %}
+{% when HomeFeedItem::Poem(poem) %}
+{% include "poem-panel.html" %}
+{% endmatch %}
+{% endfor %}
+
+<div class="home-feed-footer">
+ <div class="panel"><a href="/blog">More blogposts...</a></div>
+ <div class="panel"><a href="/poetry">More poetry...</a></div>
</div>
{% endblock content %}