Skip to content

Instantly share code, notes, and snippets.

@Snakeyyy
Created December 15, 2014 21:35
Show Gist options
  • Save Snakeyyy/f55ae966ab9ce2aff119 to your computer and use it in GitHub Desktop.
Save Snakeyyy/f55ae966ab9ce2aff119 to your computer and use it in GitHub Desktop.
{% load thumbnail %}
<picture>
<!--[if IE 9]><video style="display: none;"><![endif]-->
{# {% thumbnail image "2000" as im %}#}
<source srcset="{{ image.url }}" media="(min-width: 1000px)">
{# {% endthumbnail %}#}
{% thumbnail image "1600" as im %}
<source srcset="{{ im.url }}" media="(min-width: 800px)">
{% endthumbnail %}
{% thumbnail image "1200" as im %}
<source srcset="{{ im.url }}" media="(min-width: 600px)">
{% endthumbnail %}
{% thumbnail image "800" as im %}
<source srcset="{{ im.url }}" media="(min-width: 400px)">
{% endthumbnail %}
<!--[if IE 9]></video><![endif]-->
{% thumbnail image "600" as im %}
<img srcset="{{ im.url }}" alt="Style picture">
{% endthumbnail %}
</picture>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment