75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
|
<article >
|
||
|
{{- $images := $.Resources.ByType "image" }}
|
||
|
{{- $thumbnail := $images.GetMatch (.Params.thumbnail | default "*thumb*") }}
|
||
|
{{- $feature := $images.GetMatch (.Params.feature | default "*feature*") | default $thumbnail }}
|
||
|
{{- with $feature }}
|
||
|
<div class="flex-none pe-4 sm:pe-6 ">
|
||
|
<a
|
||
|
href="{{ with $.Params.externalUrl }}
|
||
|
{{ . }}
|
||
|
{{ else }}
|
||
|
{{ $.RelPermalink }}
|
||
|
{{ end }}"
|
||
|
aria-label="{{ $.Title | emojify }}"
|
||
|
>
|
||
|
<img
|
||
|
alt="{{ $.Params.featureAlt | default $.Params.thumbnailAlt | default "" }}"
|
||
|
{{ if eq .MediaType.SubType "svg" }}
|
||
|
class="w-24 max-w-[6rem] max-h-[4.5rem] rounded-md sm:max-h-[7.5rem] sm:w-40
|
||
|
sm:max-w-[10rem]" src="{{ .RelPermalink }}"
|
||
|
{{ else }}
|
||
|
class="w-24 rounded-md sm:w-40" srcset="
|
||
|
{{- (.Fill "160x120 smart").RelPermalink }}
|
||
|
160w, {{- (.Fill "320x240 smart").RelPermalink }} 2x"
|
||
|
src="{{ (.Fill "160x120 smart").RelPermalink }}" width="160" height="120"
|
||
|
{{ end }}
|
||
|
{{ if $.Site.Params.enableImageLazyLoading | default true }}
|
||
|
loading="lazy"
|
||
|
{{ end }}
|
||
|
/>
|
||
|
</a>
|
||
|
</div>
|
||
|
{{- end }}
|
||
|
<div>
|
||
|
<h3 >
|
||
|
{{ with .Params.externalUrl }}
|
||
|
<div>
|
||
|
<a
|
||
|
href="{{ . }}"
|
||
|
target="_blank"
|
||
|
rel="external"
|
||
|
>{{ $.Title | emojify }}</a
|
||
|
>
|
||
|
<span
|
||
|
title="{{ i18n "list.externalurl_title" }}"
|
||
|
>
|
||
|
<span class="rtl:hidden">↗</span>
|
||
|
<span class="ltr:hidden">↖</span>
|
||
|
</span>
|
||
|
</div>
|
||
|
{{ else }}
|
||
|
<a
|
||
|
href="{{ .RelPermalink }}"
|
||
|
>{{ .Title | emojify }}</a
|
||
|
>
|
||
|
{{ end }}
|
||
|
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
||
|
<div class="ms-2">
|
||
|
{{ partial "badge.html" (i18n "article.draft" | emojify) }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ if templates.Exists "partials/extend-article-link.html" }}
|
||
|
{{ partial "extend-article-link.html" . }}
|
||
|
{{ end }}
|
||
|
</h3>
|
||
|
<div>
|
||
|
{{ partial "article-meta.html" . }}
|
||
|
</div>
|
||
|
{{ if .Params.showSummary | default (.Site.Params.list.showSummary | default false) }}
|
||
|
<div >
|
||
|
{{ .Summary | emojify }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</article>
|