{% extends "snippets/layout.html" %} {% block title %}{{ snippet.title }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body %}

{{ snippet.title }}

By {{ snippet.author.name }} filed in {{ snippet.category.name }} {% if snippet.author == g.user or g.user.is_admin %} (edit) {% endif %} {{ snippet.rendered_body }}

This snippet by {{ snippet.author.name }} can be used freely for anything you like. Consider it public domain. {% if snippet.comments or g.user %}

{% if snippet.comments %}

Comments

{% endif %} {% if g.user %}

Add Comment

Title:

{% endif %}
{% endif %} {% endblock %}