{% extends "_layout/base.html" %} {% block title %}Index{% endblock %} {% block content %} {% for post in posts | batch(5) | first%}

Posted by {{ post.author }} on {{ post.pub_time.strftime('%b %d,%Y') }}

{{ post.title }}


{{ post.front_html | safe }} {{ site.excerpt_link }}
{% endfor %} {% include '_layout/paginate.html' %} {% endblock %}