2012-07-07 22:13:05 +00:00
{% extends "basedocumentation.html" %}
{% block title %}Open Access eBooks{% endblock %}
{% block extra_extra_head %}
< link rel = "stylesheet" type = "text/css" href = "/static/css/vanilla.css" class = "day" title = "day" / >
{% endblock %}
{% block doccontent %}
<!-- trim here -->
2012-06-28 20:21:13 +00:00
< section epub:type = "copyright-page" id = "copyright-page" >
< div class = "agate-info" >
2012-07-07 22:13:05 +00:00
< p > © {{ campaign.work.preferred_edition.publication_date }} by {{ campaign.work.author }}< / p >
< p > ISBN: {{ campaign.work.preferred_edition.isbn_13 }} .< / p >
2012-06-28 20:21:13 +00:00
< p > URI: < a href = "https://unglue.it/{{ campaign.work.id }}/" > https://unglue.it/work/{{ campaign.work.id }}/< / a > (this work).< / p >
< p > < img src = "images/unglueitlogo.png" alt = "unglue.it logo" / > < / p >
< p >
This < i > unglued< / i > edition is distributed under the terms of the Creative Commons (< a href = "{{ campaign.license_url }}" > {{ campaign.license }}< / a > ) license.
The Creative Commons licensing is made possible by the support of readers like you.
Become an ungluer at < a href = "https://unglue.it/" > https://unglue.it/< / a >
< / p >
< / div >
< / section >
< section epub:type = "other-credits" id = "other-credits" >
< h2 > This is an unglued ebook< / h2 >
< p >
2012-07-07 22:13:05 +00:00
Unglued ebooks are made possible through the Unglue.it website by contributions from {{ campaign.ungluers.all|length }} readers like you.< / p >
2012-06-28 20:21:13 +00:00
{% if campaign.ungluers.supporters %}
< p > Supporters of this edition include ungluers:
{% for ungluer in campaign.ungluers.supporters %}
{% if forloop.last %}and {% endif %}{{ ungluer.username }}{% if forloop.last %}. {% else %}, {% endif %}
{% endfor %}
< / p >
{% endif %}
{% if campaign.ungluers.patrons %}
2012-07-11 13:18:14 +00:00
< p > Benefactors of this edition include ungluers:
2012-06-28 20:21:13 +00:00
{% for ungluer in campaign.ungluers.patrons %}
2012-07-26 14:41:56 +00:00
{% if forloop.last %}and {% endif %}< a href = "{% if ungluer.profile.home_url %}{{ungluer.profile.home_url}}{% else %}https://unglue.it{% url supporter supporter_username=ungluer.username %}{% endif %}" > {{ ungluer.username }}< / a > {% if forloop.last %}. {% else %}, {% endif %}
2012-06-28 20:21:13 +00:00
{% endfor %}
< / p >
{% endif %}
{% if campaign.ungluers.bibliophiles %}
< p > Bibliophiles of this edition include ungluers:< dl >
{% for ungluer in campaign.ungluers.bibliophiles %}
2012-07-26 14:41:56 +00:00
< dt > < a href = "{% if ungluer.profile.home_url %}{{ungluer.profile.home_url}}{% else %}https://unglue.it{% url supporter supporter_username=ungluer.username %}{% endif %}" > {{ ungluer.username }}< / a > < / dt > < dd > {{ ungluer.profile.tagline }}< / dd >
2012-06-28 20:21:13 +00:00
{% endfor %}
< / dl >
< / p >
{% endif %}
< p >
You can say thank you by supporting the ungluing of more books at < a href = "https://unglue.it/" > https://unglue.it/< / a >
< / p >
< / section >
2012-07-07 22:13:05 +00:00
<!-- trim here -->
{% endblock %}