Last active
July 11, 2017 00:47
-
-
Save ladislavsulc/11e3edb4fca5bfdbe16cb931bd702f74 to your computer and use it in GitHub Desktop.
Responsive images - Wordpress (Timber)
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
<img | |
src="{{ post.thumbnail.src|resize(480) }}" | |
srcset=" | |
{{ post.thumbnail.src|resize(480) }} 480w, | |
{{ post.thumbnail.src|resize(220) }} 220w | |
" | |
sizes=" | |
(min-width: 980px) 25vw, | |
50vw | |
" | |
itemprop="image" | |
alt="{{ variation.thumbnail.alt }}" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://github.com/timber/timber/issues/784 for more.