@extends('theme::layout') @section('title', 'Blog') @section('content') @include('theme::_hero_banner', [ 'heroTitle' => 'Blog', 'heroSubtitle' => 'News, reflections, and stories from our parish community', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('web.home')], ['label' => 'Blog'], ], ]) @if($topwidget->isNotEmpty())
@foreach($topwidget as $widget) {!! $widget->content !!} @endforeach
@endif
{{-- Active filter indicator --}} @if($activeCategoryId && ($activeCategory = $categories->firstWhere('id', $activeCategoryId)))

Showing posts in {{ $activeCategory->name }} × Clear

@elseif($activeTag)

Tagged: #{{ $activeTag }} × Clear

@endif
{{-- Sidebar --}} {{-- Post List --}}
@if($posts->hasPages())
{{ $posts->links() }}
@endif
@if($bottomwidget->isNotEmpty())
@foreach($bottomwidget as $widget) {!! $widget->content !!} @endforeach
@endif @endsection