1
0

Add some changes to the footer for images.

This commit is contained in:
2025-04-29 23:37:00 -07:00
parent 7cf752f864
commit 914c2c4134
3 changed files with 28 additions and 3 deletions

View File

@@ -1,3 +1,14 @@
{{- /* Footer custom content area start */ -}}
{{- /* Insert any custom code web-analytics, resources, etc. here */ -}}
{{- range .Site.Params.Footer.images -}}
{{- if .url -}}
<a href="{{ .url }}" target="_blank" style="border-bottom: none;">
{{- end -}}
<img src="{{ .path }}" style="display: inline" {{- if .altText -}} alt="{{ .altText }}"{{- end -}} />
{{- if .url -}}
</a>
{{- end -}}
&nbsp;
{{- end -}}
{{- /* Footer custom content area end */ -}}