test-blog/templates/home.html

10 lines
258 B
HTML

{% extends "base.html" %}
{% block content %}
{% for post in post_list %}
<div class="post-entry">
<h2><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h2> <!-- new here!!! -->
<p>{{ post.body }}</p>
</div>
{% endfor %}
{% endblock content %}