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