templates/network/profile/sections/timeline/profile_section_timeline_sidebar.html.twig line 1

Open in your IDE?
  1.  <aside class="relative grid gap-5 col-span-full auto-rows-min xl:col-span-5">
  2.         <div class="sticky top-32">
  3.           {% embed 'network/widget/widget_sidebar.html.twig' %}
  4.             {% block widgets %}
  5.               {% if auctionEvents is not empty or raceEvents is not empty %}
  6.                 {% include 'network/profile/widgets/profile_widget_attendence.html.twig' with {
  7.                   auctionEvents: auctionEvents,
  8.                   raceEvents: raceEvents
  9.                 } %}
  10.                 {% include 'network/widget/widget_separator.html.twig' %}
  11.               {% endif %}
  12.              
  13.               {% if marketplacePosts is not empty %}
  14.                 {% include 'network/profile/widgets/profile_widget_marketplace.html.twig' with {
  15.                   marketplacePosts: marketplacePosts,
  16.                   profile: profile,
  17.                   user: user
  18.                 } only %}
  19.                 {% include 'network/widget/widget_separator.html.twig' %}
  20.               {% endif %}
  21.               {% if user and user.id != profile.id %}
  22.                 <div class="hidden md:block">
  23.                   {% include 'network/profile/widgets/profile_widget_network.html.twig' with {
  24.                     profile: profile,
  25.                     user: user
  26.                   } only %}
  27.                 </div>
  28.               {% endif %}
  29.               {% if profile.street or (profile.city and profile.postalCode) %}
  30.                 {% include 'network/profile/widgets/profile_widget_address.html.twig' with {
  31.                   profile: profile,
  32.                   user: user
  33.                 } only %}
  34.               {% endif %}
  35.               {% include 'network/profile/widgets/profile_widget_contact.html.twig' with {
  36.                   profile: profile,
  37.                   user: user
  38.                 } only %}
  39.               {% include 'network/profile/widgets/profile_widget_socialmedia.html.twig' with {
  40.                 profile: profile,
  41.                 user: user
  42.               } only %}
  43.               {% include 'network/profile/widgets/profile_widget_map.html.twig' with {
  44.                 profile: profile,
  45.                 user: user
  46.               } only %}
  47.               {% include 'network/widget/widget_separator.html.twig' %}
  48.               {% include 'network/profile/widgets/profile_widget_links.html.twig' with {
  49.                 profile: profile,
  50.                 user: user
  51.               } only %}
  52.               {% include 'network/profile/widgets/profile_widget_downloads.html.twig' with {
  53.                 profile: profile,
  54.                 user: user
  55.               } only %}
  56.             {% endblock %}
  57.           {% endembed %}
  58.           {% include 'network/profile/widgets/profile_widget_partner.html.twig' with {
  59.             profile: profile,
  60.             user: user
  61.           } only %}
  62.         </aside>