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 %}
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%;
}
h2 {
margin-top: 10px;
}
dt {
margin-left: auto;
padding-left: 7px;
}
dd {
margin-left: 7px;
}
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" >
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-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 >
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.
2012-08-06 17:35:29 +00:00
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" >
{{ transaction.ack_name }}
< / 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 %}
< a href = "{{ transaction.ack_link }}" > {{ transaction.ack_name }}< / a >
{% else %}
{{ transaction.ack_name }}
{% endif %}
< / 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_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 %}
< dt > {% if transaction.ack_link %}< a href = "{{transaction.ack_link}}" > {{ transaction.ack_name }}< / a > {% else %}{{ transaction.ack_name }}{% endif %}< / dt >
{% else %}
< dt > Anonymous< / dt >
{% endif %}
< dd > {{ transaction.ack_dedication }}< / dd >
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 >
< / section >
2012-07-07 22:13:05 +00:00
<!-- trim here -->
{% endblock %}