Skip to content

Instantly share code, notes, and snippets.

@cacheleocode
Created January 10, 2015 03:51
Show Gist options
  • Select an option

  • Save cacheleocode/a842f95fa6d275c14244 to your computer and use it in GitHub Desktop.

Select an option

Save cacheleocode/a842f95fa6d275c14244 to your computer and use it in GitHub Desktop.
author's cover image
{% for article in author.articles|slice:":1" %}
{% if not article.series.is_legacy and not article.is_legacy %}
{% thumbnail article.signature_image2 490x100 upscale autocrop crop="0," as thumb %}
{% if thumb.source_height > thumb.source_width %}
<div class="cover" style="background-image: url('{% thumbnail article.signature_image2 490x100 upscale crop=",0" %}');"></div>
{% else %}
<div class="cover" style="background-image: url('{{ thumb }}');"></div>
{% endif %}
{% else %}
<div class="cover"></div>
{% endif %}
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment