summaryrefslogtreecommitdiff
path: root/source/_partials
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-03-04 22:10:13 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-03-04 22:10:13 +0000
commit0b8eddf2cc42805c92d846e7d6566b18e5e3e554 (patch)
tree47b544ca79a4f69516634e30ed22205de74c8c9c /source/_partials
parent50c11e6d97eae5ef54e86742e0ed35443bb86afd (diff)
Try and reuse CSS
Diffstat (limited to 'source/_partials')
-rw-r--r--source/_partials/postStub.blade.php4
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>