{% extends "layout.html" %} {% block header_extra %} {% endblock %} {% block css_this_page %}page.css{% endblock %} {% block title %} {% if page.first%} {{blog.name}} {% else %} Page {{page.number}} | {{blog.name}} {%endif%} {% endblock %} {% block content %} {% for post in page.posts %}

{{post.title}} {{post.datetime.strftime("%b %d, %y")}}

{% if post.title_pic %}
{% else %}
{{post.summary}}

ยทยทยท

{% endif %}

{% endfor %}
{% if page.first == False %} {%endif%} {% if page.last == False %} {%endif%}
{% endblock %}