1) && !getSetting('profiles.disable_profile_bio_excerpt') ? 'line-clamp-1' : ''}}">
@if($user->bio)
@if(getSetting('profiles.allow_profile_bio_markdown'))
{!! GenericHelper::parseProfileMarkdownBio($user->bio) !!}
@else
{{$user->bio}}
@endif
@else
{{__('No description available.')}}
@endif
@if($user->bio && (strlen(trim(strip_tags(GenericHelper::parseProfileMarkdownBio($user->bio)))) >= 85 || substr_count($user->bio,"\r\n") > 1) && !getSetting('profiles.disable_profile_bio_excerpt'))
{{__('More info')}}
{{__('Show less')}}
@endif
@include('elements.icon',['icon'=>'calendar-clear-outline','centered'=>false,'classes'=>'mr-1'])
{{ucfirst($user->created_at->translatedFormat('F d'))}}
@if($user->location)
@include('elements.icon',['icon'=>'location-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->location}}
@endif
@if($user->website)
@include('elements.icon',['icon'=>'globe-outline','centered'=>false,'classes'=>'mr-1'])
@endif
@if(getSetting('profiles.allow_gender_pronouns'))
@if($user->gender_pronoun)
@include('elements.icon',['icon'=>'male-female-outline','centered'=>false,'classes'=>'mr-1'])
{{$user->gender_pronoun}}
@endif
@endif
@include('elements.message-alert',['classes'=>'px-2 pt-4'])
@if($user->paid_profile && (!getSetting('profiles.allow_users_enabling_open_profiles') || (getSetting('profiles.allow_users_enabling_open_profiles') && !$user->open_profile)))
@if( (!Auth::check() || Auth::user()->id !== $user->id) && !$hasSub)
{{__('Subscription')}}
@if(count($offer))
{{__('Limited offer main label',['discount'=> round($offer['discountAmount']), 'days_remaining'=> $offer['daysRemaining'] ])}}
{{__('Offer ends label',['date'=>$offer['expiresAt']->format('d M')])}}
@endif
@if($hasSub)
@else
@if(Auth::check())
@if(!GenericHelper::isEmailEnforcedAndValidated())
{{__('Your email address is not verified.')}} {{__("Click here")}} {{__("to re-send the confirmation email.")}}
@endif
@endif
@include('elements.checkout.subscribe-button-30')
@if($user->profile_access_price_6_months || $user->profile_access_price_12_months)
{{__('Subscriptions bundles')}}
{{__('Hide bundles')}}
@include('elements.icon',['icon'=>'chevron-down-outline','centered'=>false])
@endif
@if(count($offer))
{{__('Regular price label',['currency'=> getSetting('payments.currency_code') ?? 'USD','amount'=>$user->offer->old_profile_access_price])}}
@endif
@if($user->profile_access_price_6_months || $user->profile_access_price_12_months || $user->profile_access_price_3_months)
@if($user->profile_access_price_3_months)
@include('elements.checkout.subscribe-button-90')
@endif
@if($user->profile_access_price_6_months)
@include('elements.checkout.subscribe-button-182')
@endif
@if($user->profile_access_price_12_months)
@include('elements.checkout.subscribe-button-365')
@endif
@endif
@endif
@endif
@elseif(!Auth::check() || (Auth::check() && Auth::user()->id !== $user->id))
@if($activeFilter !== 'streams')
@include('elements.feed.posts-load-more', ['classes' => 'mb-2'])
@include('elements.feed.posts-wrapper',['posts'=>$posts])
@else
@include('elements.search.streams-wrapper',['streams'=>$streams,'showLiveIndicators'=>true, 'showUsername' => false])
@endif
@include('elements.feed.posts-loading-spinner')