2022-11-08 22:30:26 +00:00
|
|
|
<article class="flex flex-row mt-6 max-w-prose">
|
|
|
|
{{- $images := $.Resources.ByType "image" }}
|
|
|
|
{{- $thumbnail := $images.GetMatch "*thumb*" }}
|
|
|
|
{{- $feature := $images.GetMatch "*feature*" | default $thumbnail }}
|
|
|
|
{{- with $feature }}
|
|
|
|
<div class="flex-none pr-4 sm:pr-6 ">
|
|
|
|
<a
|
|
|
|
href="{{ with $.Params.externalUrl }}
|
|
|
|
{{ . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ $.RelPermalink }}
|
|
|
|
{{ end }}"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
class="w-24 rounded-md sm:w-40"
|
|
|
|
srcset="
|
|
|
|
{{- (.Fill "160x120 smart").RelPermalink }} 160w,
|
|
|
|
{{- (.Fill "320x240 smart").RelPermalink }} 2x"
|
|
|
|
src="{{ (.Fill "160x120 smart").RelPermalink }}"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
<div>
|
|
|
|
<h3 class="flex items-center text-xl font-semibold">
|
|
|
|
{{ with .Params.externalUrl }}
|
|
|
|
<div>
|
|
|
|
<a
|
|
|
|
class="text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral"
|
|
|
|
href="{{ . }}"
|
|
|
|
target="_blank"
|
|
|
|
rel="external"
|
|
|
|
>{{ $.Title | emojify }}</a
|
|
|
|
>
|
|
|
|
<span
|
|
|
|
class="text-xs align-top cursor-default text-neutral-400 dark:text-neutral-500"
|
|
|
|
title="{{ i18n "list.externalurl_title" }}"
|
|
|
|
>
|
|
|
|
<span class="rtl:hidden">↗</span>
|
|
|
|
<span class="ltr:hidden">↖</span>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{ else }}
|
2022-06-27 00:16:36 +00:00
|
|
|
<a
|
2022-08-18 04:59:46 +00:00
|
|
|
class="text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral"
|
2022-11-08 22:30:26 +00:00
|
|
|
href="{{ .RelPermalink }}"
|
|
|
|
>{{ .Title | emojify }}</a
|
2022-06-27 00:16:36 +00:00
|
|
|
>
|
2022-11-08 22:30:26 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
|
|
|
<div class=" ltr:ml-2 rtl:mr-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 class="text-sm text-neutral-500 dark:text-neutral-400">
|
|
|
|
{{ partial "article-meta.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ if .Params.showSummary | default (.Site.Params.list.showSummary | default false) }}
|
|
|
|
<div class="py-1 prose dark:prose-invert">
|
|
|
|
{{ .Summary | emojify }}
|
2021-08-21 01:42:40 +00:00
|
|
|
</div>
|
2021-08-14 04:57:31 +00:00
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
|
|
|
</article>
|