regluit/frontend/templates/slideshow.html

24 lines
695 B
HTML

<h3><span{% if is_preview %}>Most wishlisted{% else %}{% if faqmenu %} class="pledge_indent">What next?{% else %}>Top ungluing campaigns{% endif %}{% endif %}</span></h3>
<div class="jsmod-content">
<div id="js-slideshow">
<div class="slides_container">
<div class="slide-page slide-page1">
{% for work in works %}
{% with work.googlebooks_id as googlebooks_id %}
<div class="spacer">
{% include "book_panel.html" %}
</div>
{% endwith %}
{% endfor %}
</div>
<div class="slide-page slide-page2">
{% for work in works2 %}
<div class="spacer">
{% include "book_panel.html" %}
</div>
{% endfor %}
</div>
</div>
</div>
</div>