{% extends "layout.html" %} {% block title %}{{post.title}} - {{site.name}}{% endblock %} {% block afterstyle %} {% if post.summary %}{% endif %} {% endblock %} {% block main -%}

{{post.title}}

{% if post.author.website -%} by {{post.author.name}} {% else -%} by {{post.author.name}} {%- endif %}
{{post.content}}
{% if post.review %}
{{post.review}} Reviewed by {{post.author.name}} {%if post.rating%}, Rating {{post.rating}}{%endif%}
{% endif %}
{% for tag in post.tags -%} {%- if theme.tagcloud -%} {{tag}} {%- else %} {{tag}} {%- endif %} {%- endfor %}
{% if theme.disqus -%} {%- if theme.allow_comment_on_secret_post or post.public %}
{% endif -%} {%- endif %}
{%- endblock %}