12 lines
342 B
HTML
12 lines
342 B
HTML
<div class="flex flex-col-reverse lg:flex-row justify-between">
|
|
{{ $featured := partial "utils/get-featured" . }}
|
|
<div class="w-full {{ with $featured }}lg:w-2/3{{ end }}">
|
|
{{ partial "utils/get-summary" . }}
|
|
</div>
|
|
|
|
{{ with $featured }}
|
|
<div class="w-full lg:w-1/3 mb-4 lg:mb-0 lg:ms-8">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
</div> |