diff options
Diffstat (limited to 'source/_partials/postStub.blade.php')
| -rw-r--r-- | source/_partials/postStub.blade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/_partials/postStub.blade.php b/source/_partials/postStub.blade.php index be77ef3..14bb79f 100644 --- a/source/_partials/postStub.blade.php +++ b/source/_partials/postStub.blade.php @@ -5,12 +5,12 @@ <p class="text-2xl text-gray-300">{{ $post->description }}</p> </a> <div class="mt-8 sm:mt-0 text-right flex flex-row sm:flex-col"> - <time class="inline-block p-2 text-gray-200 order-2 sm:order-1 ml-2" datetime="{{ $post->getDate()->format('Y-m-d') }}"> + <time class="inline-block p-2 order-2 sm:order-1 ml-2" datetime="{{ $post->getDate()->format('Y-m-d') }}"> {{ $post->getDate()->format('M d, Y') }} </time> <div class="order-1 sm:order-2"> @foreach ($post->categories as $category) - <a class="inline-block rounded py-2 px-4 text-gray-200 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a> + <a class="inline-block rounded py-2 px-4 {{Str::slug($category) }}" href="/categories/{{ Str::slug($category) }}">{{ $category }}</a> @endforeach </div> </div> |
