{% block menu %}
<li>
<a href="{{ book.get_absolute_url }}" id="menu-book" data-box="book-short">
- <img src="{% if book.cover_thumb %}{% thumbnail book.cover_thumb '80x111' as thumb %}{{ thumb.url }}{% empty %}{{ book.cover_thumb.url }}{% endthumbnail %}{% endif %}"
- width="80" height="111"
+ <img src="{% if book.cover_thumb %}{% thumbnail book.cover_thumb '240x332' as thumb %}{{ thumb.url }}{% empty %}{{ book.cover_thumb.url }}{% endthumbnail %}{% endif %}"
+ width="120" height="166"
alt="{{ book.pretty_title }}"
title="{{ book.pretty_title }}">
</a>
<li>
<a href="{{ picture.get_absolute_url }}" id="menu-book" data-box="book-short">
- <img src="{% thumbnail picture.image_file '80x200' as thumb %}{{ thumb.url }}{% empty %}{{ picture.image_file.url }}{% endthumbnail %}"
- width="80"
+ <img src="{% thumbnail picture.image_file '120x300' as thumb %}{{ thumb.url }}{% empty %}{{ picture.image_file.url }}{% endthumbnail %}"
+ width="120"
alt="{{ picture.pretty_title }}"
title="{{ picture.pretty_title }}">
</a>
<li id="sponsors">
{% for sponsor in sponsors %}
- {% thumbnail sponsor.logo "80x200" as logo %}
+ {% thumbnail sponsor.logo "120x300" as logo %}
<a href="{{ sponsor.url }}" target="_blank"><img src="{{ logo.url }}" alt="{{ sponsor.name }}" /></a>
{% endthumbnail %}
{% endfor %}