featuredImage.html 519 B

1234567891011121314
  1. {{ $imgSrc := false }}
  2. {{ $params := $.Page.Params }}
  3. {{ if $params.image }}
  4. {{ $imgSrc = $params.image }}
  5. {{ else if $params.featured_image }}
  6. {{ $imgSrc = (print "images/" $params.featured_image) }}
  7. {{ end }}
  8. {{ if $imgSrc }}
  9. <div class="featured-image__wrapper">
  10. <img src="{{ $imgSrc | relURL }}" alt="{{ (.Get "alt") | default "Featured Image" }}" class="featured-image" style="width: {{ with (.Get "width") }}{{ . }}px{{ end }};height: {{ with (.Get "height") }}{{ . }}px{{ end }};">
  11. </div>
  12. {{ end }}