summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/index.blade.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/index.blade.php b/source/index.blade.php
index e9b24e1..7097fdb 100644
--- a/source/index.blade.php
+++ b/source/index.blade.php
@@ -10,12 +10,12 @@ pagination:
@include('_partials.postStub')
@endforeach
</ol>
- <nav>
+ <nav class="mt-3 px-4 flex justify-between text-gray-400 text-2xl">
@if ($pagination->previous)
- <a href="{{ $pagination->previous }}">See more recent posts</a>
+ <a href="{{ $pagination->previous }}">&lt;&lt; Recent Posts</a>
@endif
@if ($pagination->next)
- <a href="{{ $pagination->next }}">See older posts</a>
+ <a href="{{ $pagination->next }}">Older Posts &gt;&gt;</a>
@endif
</nav>
@endsection