{% extends "inherit/00_base.tmpl" %} {% block title %}Index{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Index

Welcome to my blog!

{% if exists("blog_listing") %} ## for entry in blog_listing ## endfor
{{ loop.index1 }} {{ entry.filename }} {{ entry.title }} {{ entry.tags }} {{ entry.author }} {{ entry.createDate }} {{ entry.publishDate }} {{ entry.published }} {{ indent(entry.content, 16, false, false) }} {% if loop.is_last == false %}more{% else %}eof{% endif %}
{% endif %} ## if exists("blog_post") {{ blog_post.title }}
{{ blog_post.publishDate }} by {{ blog_post.author }}
{{ indent(blog_post.content, 4, false, false) }} ## endif {% endblock %}