<aside class="relative grid gap-5 col-span-full auto-rows-min xl:col-span-5">
<div class="sticky top-32">
{% embed 'network/widget/widget_sidebar.html.twig' %}
{% block widgets %}
{% if auctionEvents is not empty or raceEvents is not empty %}
{% include 'network/profile/widgets/profile_widget_attendence.html.twig' with {
auctionEvents: auctionEvents,
raceEvents: raceEvents
} %}
{% include 'network/widget/widget_separator.html.twig' %}
{% endif %}
{% if marketplacePosts is not empty %}
{% include 'network/profile/widgets/profile_widget_marketplace.html.twig' with {
marketplacePosts: marketplacePosts,
profile: profile,
user: user
} only %}
{% include 'network/widget/widget_separator.html.twig' %}
{% endif %}
{% if user and user.id != profile.id %}
<div class="hidden md:block">
{% include 'network/profile/widgets/profile_widget_network.html.twig' with {
profile: profile,
user: user
} only %}
</div>
{% endif %}
{% if profile.street or (profile.city and profile.postalCode) %}
{% include 'network/profile/widgets/profile_widget_address.html.twig' with {
profile: profile,
user: user
} only %}
{% endif %}
{% include 'network/profile/widgets/profile_widget_contact.html.twig' with {
profile: profile,
user: user
} only %}
{% include 'network/profile/widgets/profile_widget_socialmedia.html.twig' with {
profile: profile,
user: user
} only %}
{% include 'network/profile/widgets/profile_widget_map.html.twig' with {
profile: profile,
user: user
} only %}
{% include 'network/widget/widget_separator.html.twig' %}
{% include 'network/profile/widgets/profile_widget_links.html.twig' with {
profile: profile,
user: user
} only %}
{% include 'network/profile/widgets/profile_widget_downloads.html.twig' with {
profile: profile,
user: user
} only %}
{% endblock %}
{% endembed %}
{% include 'network/profile/widgets/profile_widget_partner.html.twig' with {
profile: profile,
user: user
} only %}
</aside>