9 lines
265 B
HTML
9 lines
265 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
{% for (slug, post) in posts %}
|
||
|
{% if loop.first %}<div class="new_callout">NEW!</div>{% endif %}
|
||
|
<a href="/blog/{{ slug }}"><h2>{{ post.title }}</h2></a>
|
||
|
<p>{{ post.description }}</p>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|