<div class=“img-frame”>

{% for book in site.data.books %}
    {% if book.title == page.title and book.author == page.author %}
                <a href="{{ book.download }}" target="_blank" download><img src="{{ BASE_PATH }}/img/{{ book.cover }}" class="responsive" alt="{{ book.title }}"></a>
                <div class="actions-h">
                    <!-- AddToAny BEGIN -->
                    <a class="morel" href="{{ book.download }}" target="_blank" download><i class="fa fa-file-pdf-o"></i></a>
                    {% if page.epub %}
                    <a class="morel" href="{{ book.epub }}"><i class="fa fa-tablet"></i></a>
                    {% endif %}
                    {% if book.library %}
                    <a class="morel" href="{{ book.library }}"><i class="fa fa-book"></i></a>
                    {% endif %}
                </div>
    {% endif %}
{% endfor %}

</div>