feedmode/templates/multifeeder-template.html
2022-01-27 22:27:50 +01:00

10 lines
396 B
HTML

{% for post in response %}
<div class="post">
<!-- <input type="checkbox" name="check" value="{{ loop.index }}"><br><br> -->
<h1>{{ post.title }}</h1>
<!-- <div><small>{{ post.author }}</small></div> -->
<div><small>{{ post.published }}</small></div>
<div><small><a href="{{ post.link }}">{{ post.link }}</a></small></div>
<div>{{ post.summary }}</div>
</div>
{% endfor %}