diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/home.html | 13 | ||||
| -rw-r--r-- | templates/poetry.html | 2 |
2 files changed, 13 insertions, 2 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 %} diff --git a/templates/poetry.html b/templates/poetry.html index 8c51cff..f12a5d9 100644 --- a/templates/poetry.html +++ b/templates/poetry.html @@ -10,4 +10,4 @@ {% endfor %} </div> -{% endblock content %}
\ No newline at end of file +{% endblock content %} |
