blossom/templates/latestposts.html.tera

10 lines
459 B
Plaintext
Raw Normal View History

2023-01-17 00:48:57 +00:00
<div class="panel" id="posts">
2023-06-21 19:32:55 +01:00
<h2>latest posts <!--<a class="badge" href="/feed.xml"><img class="badge" src="/rssbadge.png" alt="rss newsfeed"></a>--></h2>
2023-01-17 00:48:57 +00:00
<table id="post-list">
2023-06-21 19:32:55 +01:00
{% for blogpost in blogposts %}
2023-01-17 00:48:57 +00:00
<tr>
2023-06-21 19:32:55 +01:00
<td><a class="post-entry" href="/blog/{{ blogpost.subject }}">{{ blogpost.subject }}<span class="post-date">{{ blogpost.created_at | truncate(length=10, end="") }}</span></a></td>
2023-01-17 00:48:57 +00:00
</tr>
2023-06-21 19:32:55 +01:00
{% endfor %}
2023-01-17 00:48:57 +00:00
</table>
</div>