mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
Remove search for now, increase upload filesize limits
This commit is contained in:
parent
1442dbfa60
commit
cb086c4708
21 changed files with 117 additions and 244 deletions
|
|
@ -5,10 +5,6 @@
|
|||
{{-- {{ config('app.name') }}--}}
|
||||
{{-- </h1>--}}
|
||||
<h1>{{ config('app.name') }}</h1>
|
||||
|
||||
@auth
|
||||
<livewire:search />
|
||||
@endauth
|
||||
</div>
|
||||
|
||||
<livewire:post-feature lazy />
|
||||
|
|
|
|||
34
resources/views/livewire/app/pagination.blade.php
Normal file
34
resources/views/livewire/app/pagination.blade.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<div class="wa-stack">
|
||||
<wa-divider></wa-divider>
|
||||
<div class="wa-split">
|
||||
<span class="wa-caption-l">Showing {{ $paginator->firstItem() }}-{{ $paginator->lastItem() }} of {{ $paginator->total() }} results</span>
|
||||
<div class="wa-cluster wa-gap-xs">
|
||||
<wa-button
|
||||
appearance="outlined"
|
||||
@if($paginator->onFirstPage())
|
||||
disabled
|
||||
@else
|
||||
wire:click="previousPage"
|
||||
wire:loading.attr="disabled"
|
||||
rel="prev"
|
||||
@endif
|
||||
>
|
||||
<wa-icon name="arrow-left" slot="prefix"></wa-icon>
|
||||
Previous
|
||||
</wa-button>
|
||||
<wa-button
|
||||
appearance="outlined"
|
||||
@if($paginator->onLastPage())
|
||||
disabled
|
||||
@else
|
||||
wire:click="nextPage"
|
||||
wire:loading.attr="disabled"
|
||||
rel="prev"
|
||||
@endif
|
||||
>
|
||||
Next
|
||||
<wa-icon name="arrow-right" slot="suffix"></wa-icon>
|
||||
</wa-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue