{% extends "base.html" %} {% block title %} {%- if env.type != 'entry' -%} {{ conf.sitename }} {%- else -%} {{ entry.title }} {%- endif -%} {% endblock %} {% block head %} {{- super() }} {%- if env.type == 'entry' %} {%- endif -%} {% endblock %} {% block content %} {% for entry in env.entrylist %} {% include 'entry.html' %} {% endfor %} {% if env.type in ['tag', 'index'] %} {% if env.prev %} Previous » {% endif %} {% if env.next is not none %} « Next {% endif %} {%- endif %} {% endblock %} {% block footer %} {{ super() }} {% if conf.disqus_shortname and type == 'index' %} {% endif %} {% endblock %}