1{{ if compact }}
2 <li class="bg-ctp-surface0 rounded">
3 <a href="{{ post.url }}">
4 <div class="m-4 py-1">
5 <p class="text-ctp-subtext1 text-lg">{{ post.title }}</p>
6 <p class="inline italic text-ctp-subtext0">{{ post.summary }}</p>
7 <p class="float-right inline text-ctp-blue">
8 <time datetime="{{ post.published |> date('SHORT_DATE') }}">
9 {{ post.published |> date("DATE") }}
10 </time>
11 </p>
12 </div>
13 </a>
14 </li>
15{{ else }}
16 <li class="bg-ctp-surface0 rounded-md w-3/4 lg:w-full">
17 <a href="{{ post.url }}">
18 <div class="m-6 py-2">
19 <h2 class="text-ctp-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
20 <h3 class="text-lg lg:inline italic text-ctp-subtext0">{{ post.summary }}</h3>
21 <p class="text-lg lg:float-right lg:inline text-ctp-blue">
22 <time datetime="{{ post.published |> date('SHORT_DATE') }}">
23 {{ post.published |> date("DATE") }}
24 </time>
25 </p>
26 </div>
27 </a>
28 </li>
29{{ /if }}