@extends('layouts.app')
@section('title', 'Archive — ' . settings('site_title', 'Ahmad Hasan Dynamics Musings'))
@section('content')
Archive
{{-- Archive by Month --}}
{{-- All Posts --}}
@foreach($posts as $post)
@include('partials.post-card', ['post' => $post])
@endforeach
{{ $posts->links() }}
@endsection