mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 23:38:56 +00:00
1bb21fcbd1
You can suppress the warning by adding the following to your site configuration: ignoreLogs = ['warning-remote-image']
20 lines
685 B
HTML
20 lines
685 B
HTML
{{- /* cache remote image locally */ -}}
|
|
{{- $resource := 0 -}}
|
|
{{- $isRemote := urls.Parse .Src | partial "function/is-url-remote.html" -}}
|
|
|
|
{{- if $isRemote -}}
|
|
{{- with try (resources.GetRemote .Src) -}}
|
|
{{- with .Err -}}
|
|
{{- warnidf "warning-remote-image" "%s" . -}}
|
|
{{- else with .Value -}}
|
|
{{- if .ResourceType | eq "image" -}}
|
|
{{- /* placed remote image in public/images/remote/ */ -}}
|
|
{{- $resource = . | resources.Copy (add "/images/remote/" .Name) -}}
|
|
{{- end -}}
|
|
{{- else -}}
|
|
{{- warnidf "warning-remote-image" "Failed to get remote image %q" $.Src -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- return $resource -}}
|