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

{{post.title}}

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

{#get the first 200 char as sumary#}
{{post.summary}}

{%for tag in post.tags%} {{tag}} {%endfor%}

Read more >>

{%endfor%}

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

{%endblock%}