Skip to content

Commit 4463225

Browse files
committed
fix: team enforce jpg pic
1 parent 9a2afab commit 4463225

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

themes/delphi/layouts/partials/landing/teampic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{{ range first 8 (sort $team "lastName" "asc" "firstName" "asc") }}
66
{{ $img := $images.GetMatch (path.Join "images" .image) }}
77
<img
8-
src="{{ ($img.Resize "150x150 .jpg").RelPermalink }}"
8+
src="{{ ($img.Resize "150x150 jpg").RelPermalink }}"
99
alt="{{ printf "%s %s" .firstName .lastName }}"
1010
width="150"
1111
height="150"

themes/delphi/layouts/shortcodes/team.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{{ $img := $images.GetMatch (path.Join "images" .image) }}
99
<div class="team-member">
1010
<img
11-
src="{{ ($img.Resize "250x250 .jpg").RelPermalink }}"
11+
src="{{ ($img.Resize "250x250 jpg").RelPermalink }}"
1212
alt="{{ printf "%s %s" .firstName .lastName }}"
1313
width="250"
1414
height="250"

0 commit comments

Comments
 (0)