@include('livewire.front.story.partials.top')
@include('livewire.front.story.partials.content-header')
{{-- Feature Image --}}
@if ($story->getMedia('featured-image')->isNotEmpty())
@if ($advancedSettings->banner_after_content !== '')
{!! $story->getFirstMedia('featured-image')->img('', ['class' => 'max-h-600 object-cover w-full', 'alt' => $story->title]) !!}
@endif
@if ($story->content_visibility === 'Auth')
@auth
@include('livewire.front.story.partials.content-body')
@else
@include('livewire.front.story.partials.non-auth')
@endauth
@else
@include('livewire.front.story.partials.content-body')
@endif
{{ __('Comments are turned off by author') }}