{% embed "@TigrisBase/decorators/_card.html.twig" %}
{% block header %}
{{ entity.name }}
{% if is_granted('edit', entity) %}
{% if is_granted('ROLE_ADMIN') %}
{{ '.icon-pencil-alt'|parse_icons }}
{% else %}
{{ '.icon-pencil-alt'|parse_icons }}
{% endif %}
{% endif %}
{% endblock %}
{% block body %}
{% if entity.image is not empty %}
{% endif %}
{{ entity.content|raw }}
{% if bundle_exists('TigrisSocialBundle') and socialTools[entity.id] is defined %}
{% include '@TigrisSocial/reaction/_buttons.html.twig' ignore missing with {'social' : socialTools[entity.id], 'entityId': entity.id, 'entityName': entity.className} %}
{% endif %}
{% endblock %}
{% endembed %}