Skip to content

Instantly share code, notes, and snippets.

@wrightmartin
Created September 23, 2015 14:09
Show Gist options
  • Select an option

  • Save wrightmartin/6aceb66cb39b245b8f77 to your computer and use it in GitHub Desktop.

Select an option

Save wrightmartin/6aceb66cb39b245b8f77 to your computer and use it in GitHub Desktop.
<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