13 lines
267 B
HTML
13 lines
267 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Recent Posts</h2>
|
|
<ul class="post-list">
|
|
{% for post in posts %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
<time>{{ post.date }}</time>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %} |