Fix bad merge
[cascardo/ema.git] / templates / diario / entry_list.html
1 {% extends "base.html" %}
2
3 {% block content %}
4
5 {% for entry in entry_list %}
6   <h2><a href="{{ entry.get_absolute_url }}">{{ entry.title }}</a></h2>
7   {{ entry.body|safe }}  
8   <p>Posted on {{ entry.pub_date|date:"F j, Y" }}</p>
9 {% endfor %}
10
11 {% endblock %}