add note when there are no posts

This commit is contained in:
slonkazoid 2024-05-04 00:24:29 +03:00
parent 95cd0323a2
commit c1e1670db3
Signed by: slonk
SSH key fingerprint: SHA256:tbZfJX4IOvZ0LGWOWu5Ijo8jfMPi78TU7x1VoEeCIjM

View file

@ -17,6 +17,9 @@
<h2>posts</h2> <h2>posts</h2>
<!-- prettier-ignore --> <!-- prettier-ignore -->
<div> <div>
{% if posts.is_empty() %}
there are no posts right now. check back later!
{% endif %}<!-- prettier-br -->
{% for post in posts %} {% for post in posts %}
<div class="post"> <div class="post">
<a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a> <a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a>