summaryrefslogtreecommitdiff
path: root/static/website/templates/fetch_posts.html
blob: d6d4e06608471dc94ad386b30acd7e13bdd20cf2 (plain)
1
2
3
4
5
6
7
8
9
{% extends 'website/templates/base.html' %}
{% block content %}
{{ category }}, {{ tutorial }}
<br>
Number of posts: {{ posts|length }} <br>
{% for post in posts %}
    <a href="{% url 'website:get_post' post.id %}"> {{ post.title }}</a>
{% endfor %}
{% endblock %}