{% extends 'base.html.twig' %} {% block title %}Profile of {{ user.username }}{% endblock %} {% block javascripts %} {% endblock %} {% block body %} {% include('parts/header.html.twig') %}
{% if user.banner %} Banner of {{ user.username }} {% else %} {% include 'parts/background.html.twig' with {'banner': true} %} {% endif %}
{% if publicProjects is empty %}

{{ user.username }} doesn't have any public projects.

{% else %} {% for project in publicProjects %}
{% include 'parts/project_card.html.twig' with {'project': project} %}
{% endfor %} {% endif %}
{% endblock %}