mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
66 lines
No EOL
2.5 KiB
HTML
66 lines
No EOL
2.5 KiB
HTML
{{ with .Params.externalUrl }}
|
|
<a class="sm:flex mb-10 article" href="{{ . }}" target="_blank" rel="external">
|
|
{{ else }}
|
|
<a class="sm:flex mb-10 article" href="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
|
|
{{- with $.Params.images -}}
|
|
{{- range first 6 . }}
|
|
<meta property="og:image" content="{{ . | absURL }}" />{{ end -}}
|
|
{{- else -}}
|
|
{{- $images := $.Resources.ByType "image" -}}
|
|
{{- $featured := $images.GetMatch "*feature*" -}}
|
|
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
|
|
{{- with $featured -}}
|
|
|
|
<div class="mb-5 sm:mr-7 thumbnail nozoom"
|
|
style="background-image:url({{ $featured.Permalink }});">
|
|
<svg class="h-32 w-full bg-white text-gray-300 sm:w-32" preserveAspectRatio="none" stroke="none" fill="none"
|
|
viewBox="0 0 200 200" aria-hidden="true">
|
|
</svg>
|
|
</div>
|
|
|
|
{{- else -}}
|
|
{{- with $.Site.Params.images }}
|
|
<meta property="og:image" content="{{ index . 0 | absURL }}" />{{ end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
|
|
<div class="mb-[5rem] md:mb-0">
|
|
<h3 class="flex items-center text-xl font-semibold">
|
|
{{ with .Params.externalUrl }}
|
|
<div>
|
|
<div
|
|
class="text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral">
|
|
{{ $.Title | emojify }}
|
|
<span class="text-xs align-top cursor-default text-neutral-400 dark:text-neutral-500">
|
|
<span class="rtl:hidden">↗</span>
|
|
<span class="ltr:hidden">↖</span>
|
|
</span>
|
|
</div>
|
|
|
|
</div>
|
|
{{ else }}
|
|
<p class="text-neutral-800 decoration-primary-500 hover:underline hover:underline-offset-2 dark:text-neutral"
|
|
href="{{ .RelPermalink }}">{{ .Title | emojify }}</p>
|
|
{{ 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 }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</a> |