summaryrefslogtreecommitdiff
path: root/source/index.blade.php
blob: 765e3b5b536ffdc23f069ef7e63458a35db9d1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
pagination:
  collection: posts
---
@extends('_layouts.master')

@section('article')
    <ol>
        @foreach ($pagination->items as $post)
            @include('_partials.postStub')
        @endforeach
    </ol>
    <nav class="mt-8 flex justify-between text-gray-400">
        @if ($pagination->previous)
            <a class="p-1" href="{{ $pagination->previous }}"><svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 13h8V7h-8V2l-8 8 8 8v-5z"/></svg> See more recent posts</a>
        @endif
        @if ($pagination->next)
            <a class="p-1 " href="{{ $pagination->next }}">See older posts <svg class="inline-block fill-current w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 7H2v6h8v5l8-8-8-8v5z"/></svg></a>
        @endif
    </nav>
@endsection