Created
December 15, 2014 21:35
-
-
Save Snakeyyy/f55ae966ab9ce2aff119 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{% 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