Created
January 9, 2017 18:53
-
-
Save verticalgrain/7ec1be0ee841ec9523d39cecc015d7e3 to your computer and use it in GitHub Desktop.
Timber + Twig srcset image partial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# Include in views like so: {% include 'partials/image-srcset.twig' with {image_id: post.get_field('hero_background_image'), class: 'hero__background'} %} #} | |
{# To print image object: {{post.get_field('hero_background_image')|print_r}} #} | |
<img class="{{class}}" alt="{{TimberImage(image_id).alt}}" | |
src="{{ TimberImage(image_id).src('large') }}" | |
srcset="{{ TimberImage(image_id).src('xlarge') }} {{ image_id['sizes']['xlarge-width'] }}w, | |
{{ TimberImage(image_id).src('hero') }} {{ image_id['sizes']['hero-width'] }}w, | |
{{ TimberImage(image_id).src('large') }} {{ image_id['sizes']['large-width'] }}w | |
" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on work by Christopher Soder-Duncan