Created
January 10, 2015 03:51
-
-
Save cacheleocode/a842f95fa6d275c14244 to your computer and use it in GitHub Desktop.
author's cover image
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
| {% 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