
<div class="md:flex mt-8 w-full max-w-6xl relative">
    <div class="flex-1"></div>
    <div class="flex-2 flex justify-center bg-opacity-50 publication-nav-container">
        <div class="my-4 absolute right-0 hidden md:block h-8 overflow-visible px-2 text-gray-400 opacity-50 text-4xl"><fa-icon icon="fas fa-{{ $page->type === 'blog' ? 'blog' : 'bullhorn' }}"></fa-icon></div>
        <div class="text-block my-4 pl-4 md:pl-0">
            <h2 class="">Latest News</h2>
        </div>
    </div>
</div>

<div class="max-w-6xl w-full">
    <paginator url="{{ $page->type }}s" 
        model="publication-thumbnail" 
        :input-options='@json(["paginate_count" => 4, "hide_unlisted" => true ])'
        :default-count="4"
        :exclude-ids="[{{ $page->id }}]"
        sort-by="published_at"
        :descending="true"
        paginator-id="publication-nav-{{ $page->id }}"
        tag-mode="or"
    ></paginator>
</div>

@if ($page->type === 'blog')
    <div class="md:flex mt-4 w-full max-w-6xl relative">
        <div class="flex-1"></div>
        <div class="flex-2 bg-highlight shadow bg-opacity-50 rounded-r">
            <div class="text-block py-2 pl-4 md:pl-0">
                <a href="/news">View More News&nbsp;&gt;</a>
            </div>
        </div>
    </div>
@endif
