1 {% extends '@RapsysBlog/_base.html.twig' %}
5 <h1><a href="{{ user.link }}">{{ user.forename }} {{ user.surname }} ({{ user.pseudonym }}){% if is_granted('ROLE_ADMIN') %} <{{ user.mail }}>{% endif %}</a></h1>
7 {% if user.articles is defined and user.articles %}
9 {% for article in user.articles %}
12 <h3><a href="{{ article.link }}">{{ article.title }}</a></h3>
15 <p>{{ article.description }}</p>
16 {% if article.keywords is defined and article.keywords %}
18 {% for keyword in article.keywords %}
19 <a href="{{ keyword.link }}">{{ keyword.title }}</a>
27 <a href="{{ article.link }}">{% trans %}Read more{% endtrans %}...</a>
35 {% if is_granted('ROLE_ADMIN') %}
36 <a href="{{ user.edit }}">{% trans %}Edit{% endtrans %}</a>
38 <a href="{{ user.link }}">{% trans %}Read more{% endtrans %}...</a>