{% extends 'base.html.twig' %} {% block title %}Search Results{% endblock %} {% block body %} {% include('parts/header.html.twig') %}

Search Results for "{{ searchTerm }}"

Showing results for projects and users matching your search criteria.

{% if searchResultsProjects is empty and searchResultsUsers is empty %}

No projects or users found matching your search criteria.

{% else %} {% if searchResultsProjects is not empty %}

Project Results

{% for project in searchResultsProjects %}
{% include 'parts/project_card.html.twig' with {'project': project, 'informations': true} %}
{% endfor %}
{% endif %} {% if searchResultsUsers is not empty %}

User Results

{% for user in searchResultsUsers %} Profile picture of {{ user.username }} {{ user.username }} {% endfor %}
{% endif %} {% endif %}
{% endblock %}