newsite-inalix/themes/hugoplate/layouts/partials/recent_posts.html

22 lines
820 B
HTML

{{ range first 3 (where .Site.RegularPages "Section" "news") }}
<div class="flex flex-col justify-between">
<div>
<img src="{{ .Params.image }}" class="w-80 h-auto object-cover" alt=""/>
<div class="flex flex-col p-2 lg:p-8">
<h3
class="w-full lg:w-60 text-2xl lg:text-2xl font-bold flex justify-between items-end"
>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h3>
</div>
</div>
<div
class="flex flex-col lg:flex-row px-2 py-2 lg:py-4 lg:px-8 items-start gap-1 lg:items-center justify-start text-sm text-[#81808C]"
>
<div class="flex items-center gap-1">
<span class="material-symbols-outlined text-[#D94645]">schedule </span
>{{ time.Format ":date_long" .PublishDate }}
</div>
</div>
</div>
{{ end }}