tpl: Add imageConfig function
authorTristan Rice <rice@fn.lc>
Wed, 16 Nov 2016 12:00:45 +0000 (04:00 -0800)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 16 Nov 2016 12:00:45 +0000 (13:00 +0100)
commita49f838cd03f89aa9eb61584c510177fa5cbd3bd
tree323b4d4bb3b405b062cbb550c2930eeb8d0ac3a3
parent950034db5cca6df75a2cb39c5e2c2e66dc41c534
tpl: Add imageConfig function

Add imageConfig function which calls image.DecodeConfig and returns the height, width and color mode of the image. (#2677)

This allows for more advanced image shortcodes and templates such as those required by AMP.

layouts/shortcodes/amp-img.html
```
{{ $src := .Get "src" }}
{{ $config := imageConfig (printf "/static/%s" $src) }}

<amp-img src="{{$src}}"
           height="{{$config.Height}}"
           width="{{$config.Width}}"
           layout="responsive">
</amp-img>
```
docs/content/templates/functions.md
hugolib/hugo_sites.go
tpl/template_funcs.go
tpl/template_funcs_test.go