blog/webapp/templates/blog_post/_search.html

8 lines
243 B
HTML
Raw Normal View History

2020-07-08 14:36:13 +02:00
{% for instance in instances %}
<li>
<a href="{{ url_for('get_blog_post', uuid=instance.id) }}">
{% include "blog_post/_title.html" %}</a>
|
2021-05-15 01:04:17 +02:00
{% include "blog_post/_actions.html" %}
2020-07-08 14:36:13 +02:00
</li>
{% endfor %}