kavanland
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

books.html
text/html

Download raw (728 bytes)

{% extends "aacore/base.html" %}
{% load ak_tags %}

{% block body %}
<section id="content">
    <h1 id="node">Books</h1>

    {% regroup books.bindings by object as book_list %}
    <section id="book-list">
        <ul>
        {% for group in book_list %}
            {% for item in group.list %}

                {% if item.subject|last == "M" %}
                <li><a href="/browse/?node={{ item.subject }}"><img src='http://covers.openlibrary.org/b/olid/{{ item.subject|URLpath:"-1" }}-L.jpg' alt="{{ item.object }} ({{ item.date }})" title="{{ item.object }} ({{ item.date }})" /></a></li>
                {% endif %}

            {% endfor %}
        {% endfor %}
        </ul>
    </section>
</section>

{% endblock %}