Remove some redundant alt text

This commit is contained in:
Joshua Goins 2024-02-19 17:23:27 -05:00
parent a1e8c8c06f
commit a26253479a
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{{ with resources.Get .Site.Params.profile_picture }}
<img alt="Profile Picture" title="Profile Picture" src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
<img alt="Profile Picture" src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}
<h1>{{ .Site.Title }}</h1>

View file

@ -4,5 +4,5 @@
{{ $path := printf "pics/%s" $name}}
{{ with resources.Get $path }}
<img alt="{{ $alt }}" title="{{ $alt }}" class="gallery-img page-pic" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
<img class="gallery-img page-pic" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
{{ end }}