{% extends 'base.html.twig' %} {% block title %}{{ 'my.title'|trans }}{% endblock %} {% block body %}
{{ 'my.title'|trans }}
{% for gist in user.gists %}

{{ gist.title ? gist.title : 'gist.untitled'|trans }}, {{ gist.createdAt|date('date.format'|trans) }}

{% if not gist.cipher %} View {% else %} {% endif %}

{% endfor %}
{% endblock %}