{%- extends 'base.html' %} {%- block title %}{% if title %} ยป {{ title }}{% endif %}{% endblock %} {%- block body %} {%- if tag -%}

Tag: {{ ' + '.join(tag) }} (Atom feed)

{%- endif %} {%- for post in posts %}

{%- if is_post(post.slug) -%} {{ post.title }} {%- else -%} {{ post.title }} {%- endif -%}

{% if full_content -%} {{ post.full_html }} {% else -%} {{ post.abstract_html }} {%- endif %} {% if post.read_more and not full_content -%}

Read more...

{% endif -%}
Author: {% if post.author_email -%} {{ post.author_name }} {%- else %} {{ post.author_name }} {%- endif %}
Published on: {{ post.datetime|datetimeformat }} {%- if post.mdatetime %} - Modified on: {{ post.mdatetime|datetimeformat }}{% endif %}
{% if post.tags -%} Tags: {% for tag in post.tags -%} {{ tag }} {%- if not loop.last %}, {% endif %} {%- endfor %}
{%- endif %} {% if is_post(post.slug) and config.DISQUS -%} Comments - {%- endif %} Permalink {%- if config.SHOW_RST_SOURCE %} - Source code {%- endif %}
{% block disqus_post %}{% endblock %} {% endfor %} {% block pagination %}{% endblock %} {%- endblock %}