2012-07-07 22:13:05 +00:00
{% extends "basedocumentation.html" %}
2012-08-06 17:35:29 +00:00
{% block title %}Ungluers supporting the {{ campaign }}{% endblock %}
2012-07-07 22:13:05 +00:00
{% block extra_extra_head %}
2014-04-10 17:15:08 +00:00
{{ block.super }}
2012-12-11 18:17:33 +00:00
< link rel = "stylesheet" type = "text/css" href = "/static/css/vanilla.css" class = "day" title = "day" / >
< style >
.ackbox {
float: left;
min-width: 33%;
2012-12-19 15:22:11 +00:00
margin-right: 7px;
2012-12-11 18:17:33 +00:00
}
h2 {
2013-01-02 18:53:00 +00:00
clear: both;
margin: auto !important;
padding: 20px 0 10px 0 !important;
2012-12-11 18:17:33 +00:00
}
p {
text-indent: 0;
}
< / style >
2012-07-07 22:13:05 +00:00
{% 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" >
2014-01-18 02:37:19 +00:00
< p > © {{ campaign.work.preferred_edition.publication_date }} by {{ campaign.work.authors_short }}< / p >
2012-07-07 22:13:05 +00:00
< p > ISBN: {{ campaign.work.preferred_edition.isbn_13 }} .< / p >
2012-08-06 17:35:29 +00:00
< p > URI: < a href = "https://unglue.it/work/{{ campaign.work.id }}/" > https://unglue.it/work/{{ campaign.work.id }}/< / a > (this work).< / p >
2012-06-28 20:21:13 +00:00
< p > < img src = "images/unglueitlogo.png" alt = "unglue.it logo" / > < / p >
< p >
2013-01-09 20:02:48 +00:00
This < i > unglued< / i > edition is distributed under the terms of the Creative Commons {{ campaign.license }} license. To view a copy of this license, visit < a href = "{{ campaign.license_url }}" > {{ campaign.license_url }}< / a > .
< / p >
< p >
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 > .
2012-06-28 20:21:13 +00:00
< / p >
< / div >
< / section >
< section epub:type = "other-credits" id = "other-credits" >
< h2 > This is an unglued ebook< / h2 >
2012-08-06 17:35:29 +00:00
{% with campaign.ungluer_transactions as transactions %}
2012-06-28 20:21:13 +00:00
< p >
2012-08-06 17:35:29 +00:00
Unglued ebooks are made possible through the Unglue.it website by contributions from {{ transactions.all|length }} readers like you.< / p >
{% if transactions.supporters %}
2012-12-11 18:17:33 +00:00
< h2 > Supporters of this edition:< / h2 >
2012-08-06 17:35:29 +00:00
{% for transaction in transactions.supporters %}
2012-12-11 18:17:33 +00:00
< div class = "ackbox" >
2013-08-18 19:21:55 +00:00
{{ transaction.extra.ack_name }}
2012-12-11 18:17:33 +00:00
< / div >
2012-06-28 20:21:13 +00:00
{% endfor %}
2012-12-11 18:17:33 +00:00
{% if transactions.anon_supporters %}
< div class = "ackbox" >
Anonymous ({{ transactions.anon_supporters }})
< / div >
{% endif %}
< br / >
2012-06-28 20:21:13 +00:00
{% endif %}
2012-08-06 17:35:29 +00:00
{% if transactions.patrons %}
2012-12-11 18:17:33 +00:00
< h2 > Benefactors of this edition:< / h2 >
2012-08-06 17:35:29 +00:00
{% for transaction in transactions.patrons %}
2012-12-11 18:17:33 +00:00
< div class = "ackbox" >
{% if transaction.ack_link %}
2013-08-18 19:21:55 +00:00
< a href = "{{ transaction.ack_link }}" > {{ transaction.extra.ack_name }}< / a >
2012-12-11 18:17:33 +00:00
{% else %}
2013-08-18 19:21:55 +00:00
{{ transaction.extra.ack_name }}
2012-12-11 18:17:33 +00:00
{% endif %}
< / div >
2012-06-28 20:21:13 +00:00
{% endfor %}
2013-01-02 18:53:00 +00:00
{% if transactions.anon_patrons %}
2012-12-11 18:17:33 +00:00
< div class = "ackbox" >
Anonymous ({{ transactions.anon_patrons }})
< / div >
{% endif %}
< br / >
2012-06-28 20:21:13 +00:00
{% endif %}
2012-08-06 17:35:29 +00:00
{% if transactions.bibliophiles %}
2012-12-11 18:17:33 +00:00
< h2 > Bibliophiles of this edition:< / h2 >
< dl >
2012-08-06 17:35:29 +00:00
{% for transaction in transactions.bibliophiles %}
2012-12-11 18:17:33 +00:00
{% if not transaction.anonymous %}
2013-08-18 19:21:55 +00:00
< dt > {% if transaction.ack_link %}< a href = "{{transaction.ack_link}}" > {{ transaction.extra.ack_name }}< / a > {% else %}{{ transaction.extra.ack_name }}{% endif %}< / dt >
2012-12-11 18:17:33 +00:00
{% else %}
< dt > Anonymous< / dt >
{% endif %}
2013-08-18 19:21:55 +00:00
< dd > {{ transaction.extra.ack_dedication }}< / dd >
2013-01-02 18:53:00 +00:00
< br / >
2012-06-28 20:21:13 +00:00
{% endfor %}
< / dl >
{% endif %}
2012-08-06 17:35:29 +00:00
{% endwith %}
2012-12-11 18:17:33 +00:00
< hr >
2012-06-28 20:21:13 +00:00
< p >
2012-12-11 18:17:33 +00:00
You can say thank you by supporting the ungluing of more books at < a href = "https://unglue.it/" > https://unglue.it/< / a > .
2012-06-28 20:21:13 +00:00
< / p >
2013-01-16 17:10:36 +00:00
< p >
If you're reading this book on an internet-connected device, you can also share it with your friends:
< ul >
{% url work campaign.work.id as work_url %}
< a href = "mailto:?to=&subject=I%27m%20enjoying%20{{ campaign.work.title|urlencode }}%2C%20a%20free%2C%20DRM%2Dfree%20ebook%2E%20You%20can%20too%21&body=You%20can%20download%20it%20from%20Unglue%2Eit%20here%3A%20https://unglue.it{{ work_url|urlencode:" " } } % 20 % 2E " > < li > Email it< / li > < / a >
< a href = "https://twitter.com/intent/tweet?url=https://unglue.it{{ work_url|urlencode:" " } } & text = I%27m%20enjoying%20{{ campaign . work . title | urlencode: " " } } % 2C % 20a % 20free % 2C % 20DRM % 2Dfree % 20ebook % 2E % 20You % 20can % 20too % 21 " > < li > Tweet it< / li > < / a >
< a href = "https://www.facebook.com/sharer.php?u=https://unglue.it{{ work_url|urlencode:" " } } " > < li > Share it on Facebook< / li > < / a >
< / ul >
< / p >
2012-06-28 20:21:13 +00:00
< / section >
2012-07-07 22:13:05 +00:00
<!-- trim here -->
{% endblock %}