Created
September 23, 2015 14:09
-
-
Save wrightmartin/6aceb66cb39b245b8f77 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
| <div class="profile-pic"> | |
| <img src=" | |
| {% thumbnail object.primary_image "100x100" crop="center" as sm %} | |
| {{ sm.url }} | |
| {% empty %} | |
| {{STATIC_URL}}images/{{object.css_class}}-210x210.jpg | |
| {% endthumbnail %} | |
| " srcset=" | |
| {% thumbnail object.primary_image "210x210" crop="center" as lg %} | |
| {{ lg.url }} 640w, | |
| {% empty %} | |
| {{STATIC_URL}}images/{{object.css_class}}-210x210.jpg | |
| {% endthumbnail %} | |
| " | |
| alt="{{ object.name }}"> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment