summaryrefslogtreecommitdiff
path: root/source/index.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-05-20 23:15:30 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-05-20 23:15:30 +0100
commit23af28d0587025ee2b41dd5620442309860d06d6 (patch)
tree259ea96b557a827bce402624d0833b7068100955 /source/index.blade.php
parent04f7e8f440b98037e295fe16f0f948a8e9d0c234 (diff)
Remove Jigswaw files
Diffstat (limited to 'source/index.blade.php')
-rw-r--r--source/index.blade.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/index.blade.php b/source/index.blade.php
deleted file mode 100644
index a99d8ef..0000000
--- a/source/index.blade.php
+++ /dev/null
@@ -1,22 +0,0 @@
----
-pagination:
- collection: posts
----
-@extends('_layouts.master')
-
-@section('article')
- <ol class="list-none">
- @foreach ($pagination->items as $post)
- @include('_partials.postStub')
- @endforeach
- </ol>
- <nav class="mt-3 px-4 flex justify-between text-2xl">
- @if ($pagination->previous)
- <a href="{{ $pagination->previous }}">&lt;&lt; Recent Posts</a>
- @endif
- @if ($pagination->next)
- <a href="{{ $pagination->next }}">Older Posts &gt;&gt;</a>
- @endif
- </nav>
-@endsection
-