@extends('layouts.app')
@section('title', settings('site_title', 'Ahmad Hasan Dynamics Musings') . ' — ' . settings('site_tagline', ''))
@section('content')
{{-- Hero --}}
@if($featured->isNotEmpty())
Featured Articles
@foreach($featured as $post)
@include('partials.post-card', ['post' => $post])
@endforeach
@endif
{{-- Latest Posts --}}
@foreach($posts as $post)
@include('partials.post-card', ['post' => $post])
@endforeach
{{-- Sidebar --}}
{{-- Categories --}}
@if($categories->isNotEmpty())
@endif
@endsection