From c4ac00e8efdfd87a8e513d557bab2020d22fa86b Mon Sep 17 00:00:00 2001 From: Andromeda Yelton Date: Thu, 29 Nov 2012 10:54:07 -0500 Subject: [PATCH] first pass at smashwords page --- frontend/templates/smashwords.html | 28 ++++++++++++++++++++++++++++ frontend/urls.py | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 frontend/templates/smashwords.html diff --git a/frontend/templates/smashwords.html b/frontend/templates/smashwords.html new file mode 100644 index 00000000..02507daf --- /dev/null +++ b/frontend/templates/smashwords.html @@ -0,0 +1,28 @@ +{% extends "basedocumentation.html" %} + +{% block doccontent %} +

Smashwords + Unglue.it

+ +

Are you a Smashwords author? Do you want to unglue your book? You can! Here's how:

+ + + +

Why Unglue Your Book?

+ +

As a self-published author, you know that innovative marketing and distribution are critical.

+ +

Ungluing campaigns guarantee you income when campaigns succeed, without risk to you if they don't. Whether campaigns succeed or fail, they're a tool for you to reach out to, discover, interact with, and increase your audience while raising the profile of your work. Successful campaigns mean wider distribution of your book -- our first unglued ebook reached #3 most-downloaded in Amazon's Kindle eBooks > Nonfiction > Social Sciences category. Your unglued book, in turn, becomes an ambassador for the rest of your work.

+ +

Rest assured that, when you unglue a book, you retain the copyright. You can choose whichever Creative Commons license serves your interests best, whether that's inviting your fans to remix your work or sharing it widely while reserving certain rights. You're still welcome to sell your book under the terms of your Smashwords agreement, and to separately license other editions. Ungluing isn't instead of your book's other opportunities -- it's in addition to them.

+ +

The Fine Print

+ +

Don't the Smashwords Terms of Service say that authors can't distribute Meatgrinder files through other channels without special permission?

+

Yes. You have that permission, courtesy of an agreement between Smashwords and Unglue.it.

+ +

Where can I learn more about Unglue.it's terms?

+

Please see our Terms of Service and our FAQ.

+{% endblock %} \ No newline at end of file diff --git a/frontend/urls.py b/frontend/urls.py index 0dd49d24..2eff2f5a 100644 --- a/frontend/urls.py +++ b/frontend/urls.py @@ -85,6 +85,8 @@ urlpatterns = patterns( url(r'^supporter/(?P[^/]+)/feed/$', SupporterWishlistFeed()), url(r'^campaign_archive.js/$', "campaign_archive_js", name="campaign_archive_js"), url(r"^about/(?P\w*)/$", "about", name="about"), + url(r"^smashwords/$", TemplateView.as_view(template_name="smashwords.html"), + name="smashwords"), ) if settings.DEBUG: