2021-08-11 05:28:33 +00:00
|
|
|
<article>
|
2022-06-27 00:16:36 +00:00
|
|
|
<h3 class="flex items-center mt-6 text-xl font-semibold">
|
2021-08-22 06:58:25 +00:00
|
|
|
{{ with .Params.externalUrl }}
|
2022-06-27 00:16:36 +00:00
|
|
|
<div>
|
|
|
|
<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-06-27 00:16:36 +00:00
|
|
|
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>
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ else }}
|
2021-08-20 03:56:45 +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"
|
2021-08-25 23:44:41 +00:00
|
|
|
href="{{ .RelPermalink }}"
|
2022-01-18 22:15:23 +00:00
|
|
|
>{{ .Title | emojify }}</a
|
2021-08-20 03:56:45 +00:00
|
|
|
>
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ end }}
|
2021-08-16 00:14:51 +00:00
|
|
|
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
2022-06-27 00:16:36 +00:00
|
|
|
<div class=" ltr:ml-2 rtl:mr-2">
|
2021-09-20 03:24:28 +00:00
|
|
|
{{ partial "badge.html" (i18n "article.draft" | 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
|
|
|
{{ if templates.Exists "partials/extend-article-link.html" }}
|
|
|
|
{{ partial "extend-article-link.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</h3>
|
2021-12-21 02:22:45 +00:00
|
|
|
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ partial "article-meta.html" . }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
2021-10-19 06:04:42 +00:00
|
|
|
{{ if .Params.showSummary | default (.Site.Params.list.showSummary | default false) }}
|
2022-01-20 03:08:52 +00:00
|
|
|
<div class="py-1 prose dark:prose-invert">
|
2021-10-19 06:04:42 +00:00
|
|
|
{{ .Summary | emojify }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</article>
|