mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
12 lines
439 B
PHP
12 lines
439 B
PHP
<div class="wa-stack wa-gap-3xl">
|
|
<wa-breadcrumb class="wa-heading-l">
|
|
<wa-breadcrumb-item href="{{ route('home') }}" wire:navigate.hover>{{ config('app.name') }}</wa-breadcrumb-item>
|
|
<wa-breadcrumb-item>posts</wa-breadcrumb-item>
|
|
</wa-breadcrumb>
|
|
<div class="wa-cluster wa-gap-s">
|
|
@foreach ($posts as $post)
|
|
<livewire:posts.thumbnail :$post lazy />
|
|
@endforeach
|
|
</div>
|
|
{{ $posts->links('livewire.app.pagination') }}
|
|
</div>
|