regluit/frontend/templates/slideshow.html

26 lines
663 B
HTML
Raw Normal View History

2013-12-14 18:24:29 +00:00
<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">
2013-12-14 18:24:29 +00:00
{% 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">
2013-12-14 18:24:29 +00:00
{% 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>