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