{% extends 'base/one.column.html.twig' %} {% set title %}Snip {{ snip }}{% endset %} {% block body %} {% if app.user %} Back {% else %} Index {% endif %} {% if is_granted('edit', snip) %} Versions Edit {% if snip.archived %} Unarchive {% else %} Archive {% endif %} Delete {% endif %} Raw

{{ snip }} #{{ snip.id }} {% for tag in snip.tags %} {{ tag }} {% endfor %} {{ include('user/badge.html.twig', {user: snip.createdBy}) }} {{ include('snip/badge.html.twig', {snip: snip}) }}

{{ content|raw }}
{% endblock %} {% block css %} {{ parent() }} {% endblock %} {% block js %} {{ parent() }} {% endblock %}