Add jpg's as webp fallback for Safari
Replaced webp backgrounds with jpg's because couldn't figure out how to use Modernizr (detect webp support for CSS fallback) for Hugo. Also added back testimonial section with leader testimonials.
This commit is contained in:
@@ -18,7 +18,13 @@
|
||||
<div class="team-member">
|
||||
<div class="member-photo">
|
||||
{{"<!-- member photo -->" | safeHTML}}
|
||||
<img class="img-fluid" src="{{ .image | absURL }}" alt="">
|
||||
<picture>
|
||||
<source class="img-fluid"
|
||||
srcset="images/team/{{ .imageName }}.webp" type="image/webp">
|
||||
<source class="img-fluid"
|
||||
srcset="images/team/{{ .imageName }}.jpg" type="image/jpeg">
|
||||
<img class="img-fluid" src="images/team/{{ .imageName }}.jpg" alt="{{ .name }}-profile-picture">
|
||||
</picture>
|
||||
|
||||
{{"<!-- member social profile -->" | safeHTML}}
|
||||
<!-- <div class="mask"> -->
|
||||
|
||||
Reference in New Issue
Block a user