amp-img.html 486 B

123456789
  1. <amp-img
  2. {{ with .Get "src" }}src="{{ . }}"{{ end }}
  3. {{ with .Get "alt" }}alt="{{ range (split . " ") }}{{ . }} {{ end }}"{{ end }}
  4. {{ with .Get "attribution" }}attribution="{{ range (split . " ") }}{{ . }} {{ end }}"{{ end }}
  5. {{ with .Get "srcset" }}srcset="{{ range (split . " ") }}{{ . }} {{ end }}"{{ end }}
  6. {{ with .Get "width" }}width="{{ . }}"{{ end }}
  7. {{ with .Get "height" }}height="{{ . }}"{{ end }}
  8. {{ with .Get "layout" }}layout="{{ . }}"{{ end }}>
  9. </amp-img>