You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
396 B
10 lines
396 B
{% 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 %}
|