templates/network/profile/detail.html.twig line 1

Open in your IDE?
  1. {% extends 'page.html.twig' %}
  2. {% block title %}
  3.   {% do pimcore_head_title().prepend(profile.name) %}
  4. {% endblock %}
  5. {% do pimcore_head_meta().setDescription(
  6.   '{{name}} on 3forONE.com - {{description}}'|trans({
  7.     '{{name}}': profile.name,
  8.     '{{description}}': profile.description
  9.   })
  10. ) %}
  11. {% block content %}
  12.   <div id="profile-detail-modal"></div>
  13.   <div class="w-full mb-4 md:gap-8 md:mb-16">
  14.     {% block hero deferred %}
  15.       {% include 'network/profile/sections/profile_section_hero.html.twig' with {
  16.         profile: profile,
  17.         user: user
  18.       } only %}
  19.     {% endblock %}
  20.     {% block tab_navigation %}
  21.       {% include "network/profile/components/tab_navigation_component.html.twig" with {
  22.         profile: profile
  23.       } %}
  24.     {% endblock %}
  25.     
  26.     <div class="container ">
  27.       <turbo-frame id="tab_content" src="{{ path('profile_tab_navigation_timeline', { id: profile.id }) }}">
  28.      
  29.       </turbo-frame>
  30.       </div>
  31.     </div>
  32.   </div>
  33. {% endblock %}