You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
{% block header %}
|
|
|
<h2>{%block title %}Entradas{%endblock title%}</h2>
|
|
|
{%endblock header %}
|
|
|
|
|
|
{%block content %}
|
|
|
{% for post in posts %}
|
|
|
<article>
|
|
|
<p class="message">{{ post["message"]}}</p>
|
|
|
<aside>Publicado por {{ post["author"] }} el {{ post["created"].strftime("%b %d, %Y, a las %I:%M%p") }}</aside>
|
|
|
</article>
|
|
|
{% endfor %}
|
|
|
{%endblock content %}
|