diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-05-26 23:15:11 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-05-26 23:15:11 +0100 |
| commit | 10af59e22eb5ccd165369c1bc57261216c67388e (patch) | |
| tree | 187f7c8541eded9323e56f99a420879133ed42f7 | |
| parent | ce4520943abb79167fc28ad5bd63d1f8c299f1a7 (diff) | |
Remove links to previous and next posts
| -rw-r--r-- | source/_layouts/post.blade.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source/_layouts/post.blade.php b/source/_layouts/post.blade.php index faaf2ea..cbd4511 100644 --- a/source/_layouts/post.blade.php +++ b/source/_layouts/post.blade.php @@ -19,13 +19,5 @@ </div> </header> @yield('content') - <nav class="mt-12 pt-8 flex justify-between text-2xl border-t border-green-700"> - @if ($page->getPrevious()) - <a href="{{ $page->getPrevious()->getPath() }}"><< {{ $page->getPrevious()->title }}</a> - @endif - @if ($page->getNext()) - <a href="{{ $page->getNext()->getPath() }}">{{ $page->getNext()->title }} >></a> - @endif - </nav> @endsection |
