blob: 2b18bd8aa61a4ae524a4b47ab3920801368668f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div class="flex flex-col mb-4">
<p class="text-gray-700 font-medium my-2">
{{ $post->getDate()->format('F j, Y') }}
</p>
<h2 class="text-3xl mt-0">
<a
href="{{ $post->getUrl() }}"
title="Read more - {{ $post->title }}"
class="text-gray-900 font-extrabold"
>{{ $post->title }}</a>
</h2>
<p class="mb-4 mt-0">{!! $post->getExcerpt(200) !!}</p>
<a
href="{{ $post->getUrl() }}"
title="Read more - {{ $post->title }}"
class="uppercase font-semibold tracking-wide mb-2"
>Read</a>
</div>
|