25 lines
810 B
HTML
25 lines
810 B
HTML
{{- $src := .Destination -}}
|
|
{{-
|
|
$cachable := or
|
|
(hasPrefix $src "https://transfemscience.org/assets/images/")
|
|
(hasPrefix $src "https://upload.wikimedia.org/wikipedia/commons/")
|
|
-}}
|
|
{{- if and (getenv "CI") $cachable -}}
|
|
{{- $image := resources.GetRemote $src -}}
|
|
{{- if $image -}}
|
|
{{- if eq $image.MediaType.SubType "svg" -}}
|
|
{{- $image = $image | minify -}}
|
|
{{- end -}}
|
|
{{- $src = $image.Permalink -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- $alt := .Text | default .Title | default "figure" -}}
|
|
{{- $figure := printf `<figure class="image"><img src=%q alt=%q data-origin=%q></figure>` $src $alt .Destination | safeHTML -}}
|
|
{{- if .Title }}
|
|
<div class="card">
|
|
<div class="card-image">{{ $figure }}</div>
|
|
<div class="card-content">{{ .Title }}</div>
|
|
</div>
|
|
{{- else }}
|
|
{{ $figure }}
|
|
{{- end }} |