Files
libertytoolsio/themes/hugo-book.backup/layouts/_markup/render-image.html

6 lines
273 B
HTML
Raw Normal View History

{{- $destination := .Destination -}}
{{- if .Page.Site.Params.BookPortableLinks -}}
{{- $destination = partial "docs/links/portable-image" . -}}
{{- end -}}
<img src="{{ $destination | safeURL }}" alt="{{ .Text }}" {{ with .Title }}title="{{ . }}"{{ end }}/>
{{- /**/ -}}