{% extends 'page.html.twig' %}
{% block title %}
{% do pimcore_head_title().prepend(profile.name) %}
{% endblock %}
{% do pimcore_head_meta().setDescription(
'{{name}} on 3forONE.com - {{description}}'|trans({
'{{name}}': profile.name,
'{{description}}': profile.description
})
) %}
{% block content %}
<div id="profile-detail-modal"></div>
<div class="w-full mb-4 md:gap-8 md:mb-16">
{% block hero deferred %}
{% include 'network/profile/sections/profile_section_hero.html.twig' with {
profile: profile,
user: user
} only %}
{% endblock %}
{% block tab_navigation %}
{% include "network/profile/components/tab_navigation_component.html.twig" with {
profile: profile
} %}
{% endblock %}
<div class="container ">
<turbo-frame id="tab_content" src="{{ path('profile_tab_navigation_timeline', { id: profile.id }) }}">
</turbo-frame>
</div>
</div>
</div>
{% endblock %}