{% extends 'base.html.twig' %} {% block title %}{{ user.firstName }} {{ user.lastName }} | universities.com{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block scripts %} {{ parent() }} {% endblock %} {% block body %}
{% if user.image %}
{{ user.firstName }} {{ user.lastName }}
{{ user.data.author_bio|raw }}
{% else %}
{{ user.firstName }} {{ user.lastName }}
{{ user.data.author_bio|raw }}
{% endif %}

All articles by {{ user.firstName }}

{% if posts|length > 0 %} {% for post in posts %}
{% if post.image %} {% endif %}
{{ post.title }}
{% endfor %} {% else %}
Sorry, no posts have been published yet.
{% endif %}
{% endblock %}