regluit/frontend/templates/slideshow.html

26 lines
663 B
HTML

<h3><span>Books That want to be free...</span></h3>
<div class="jsmod-content">
<div id="js-slideshow">
<div class="slides_container">
<div class="slide-page slide-page1">
{% for work in slidelist.0 %}
{% 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 slidelist.1 %}
{% with work.googlebooks_id as googlebooks_id %}
<div class="spacer">
{% include "book_panel.html" %}
</div>
{% endwith %}
{% endfor %}
</div>
</div>
</div>
</div>