2011-09-04 04:21:51 +00:00
<!DOCTYPE html>
2011-09-29 23:27:31 +00:00
{# raw url references raise test errors in tests for django registration; this is a workaround #}
{% url privacy as privacyurl %}
2011-12-16 22:19:59 +00:00
{% url terms as termsurl %}
2011-10-03 16:36:04 +00:00
{% url regluit.frontend.views.edit_user as editurl %}
2011-10-03 16:50:34 +00:00
{% url rightsholders as rhtoolsurl %}
2011-11-12 03:51:12 +00:00
{% url faq as faqurl %}
2012-01-15 18:19:35 +00:00
{% url about as abouturl %}
{% url press as pressurl %}
2011-11-16 19:45:37 +00:00
{% url rh_admin as adminurl %}
2011-12-29 17:50:09 +00:00
{% load truncatechars %}
2011-10-03 16:50:34 +00:00
2011-09-04 04:21:51 +00:00
< html >
< head >
2011-09-26 18:43:41 +00:00
< title > unglue.it {% block title %}{% endblock %}< / title >
2011-11-06 20:24:16 +00:00
< link type = "text/css" rel = "stylesheet" href = "/static/css/sitewide.css" / >
2011-11-15 18:54:13 +00:00
< link REL = "SHORTCUT ICON" HREF = "/static/images/favicon.ico" >
2011-11-29 23:14:25 +00:00
{% block extra_css %}{% endblock %}
2011-11-18 14:22:21 +00:00
{% block base_js %}
2011-11-15 18:54:13 +00:00
< script type = "text/javascript" src = "/static/js/jquery-1.6.3.min.js" > < / script >
2012-01-13 17:34:42 +00:00
{% endblock %}
{% block extra_js %}
2011-11-18 14:22:21 +00:00
{% endblock %}
2011-12-12 19:10:49 +00:00
< script type = "text/javascript" src = "/static/js/watermark_init.js" > < / script >
< script type = "text/javascript" src = "/static/js/watermark_change.js" > < / script >
2011-11-18 14:22:21 +00:00
{% block extra_head %}
{% endblock %}
2011-09-04 04:21:51 +00:00
< / head >
< body >
2012-01-09 20:53:09 +00:00
< div id = "feedback" >
2012-01-15 17:04:43 +00:00
< p > < a href = "/feedback/?page={{request.build_absolute_uri|urlencode:" " } } " class = "nounderline" > Feedback< / a > < / p >
2012-01-09 20:53:09 +00:00
< / div >
2011-09-21 15:11:36 +00:00
< div id = "js-page-wrap" >
2011-10-14 02:19:14 +00:00
< div id = "js-header" >
< div class = "js-main" >
< div class = "js-logo" >
< a href = "/" > < img src = "/static/images/logo.png" alt = "unglue.it" title = "unglue.it" / > < / a >
2011-09-04 04:21:51 +00:00
< / div >
2011-10-14 02:32:30 +00:00
{% if not suppress_search_box %}
2011-11-07 20:11:52 +00:00
< div class = "js-search" >
2011-10-14 02:32:30 +00:00
< div class = "js-search-inner" >
< form action = "{% url search %}" method = "get" >
2011-12-13 21:17:51 +00:00
< div class = "inputalign" >
2011-12-12 21:09:18 +00:00
< input type = "text" id = "watermark" size = "25" onfocus = "imgfocus()" onblur = "imgblur(15)" class = "inputbox" name = "q" value = "{{ q }}" >
2011-12-13 21:17:51 +00:00
< input type = "submit" class = "button" >
< / div >
2011-10-14 02:32:30 +00:00
< / form >
< / div >
< / div >
{% endif %}
2011-09-21 15:11:36 +00:00
< div class = "js-topmenu" >
2011-10-14 02:19:14 +00:00
< ul class = "menu" >
2011-09-04 04:21:51 +00:00
{% if user.is_authenticated %}
2011-12-29 17:50:09 +00:00
< li class = "first" > < a href = "/supporter/{{user.username}}" > < span id = "welcome" > Welcome, {{ user.username|truncatechars:20 }}< / span > < / a > < / li >
2011-09-04 05:29:18 +00:00
< li > < a href = "{% url auth_logout %}" > < span > Sign Out< / span > < / a > < / li >
2011-09-04 04:21:51 +00:00
{% else %}
2011-12-29 05:11:28 +00:00
< li class = "first" > < a href = "{% url auth_login %}?next={% firstof request.path '/' %}" > < span > Sign In< / span > < / a > < / li >
2011-09-04 04:21:51 +00:00
{% endif %}
2011-11-12 03:51:12 +00:00
< li > < a href = "{{faqurl}}" > < span > FAQs< / span > < / a > < / li >
2012-01-15 18:19:35 +00:00
< li > < a href = "{{ pressurl }}" > < span > Press< / span > < / a > < / li >
< li > < a href = "/" > < span > Home< / span > < / a > < / li >
2011-09-04 04:21:51 +00:00
{% if not user.is_authenticated %}
2011-12-28 18:51:24 +00:00
< li class = "last" id = "expander" > < a href = "{% url registration_register %}" > < span > sign up< / span > < / a > < / li >
2011-09-04 04:21:51 +00:00
{% endif %}
< / ul >
< / div >
< / div >
< / div >
2012-01-15 17:04:43 +00:00
< div class = "preview_top" >
Welcome to the alpha version of Unglue.It. This site is a preview of our full functionality; some things (including pledging) aren't quite working yet. If something seems broken or confusing -- or if you find something you love! -- please give us < a href = "/feedback" > feedback< / a > . Thank you for your interest, and have fun.
< / div >
2011-10-13 16:23:16 +00:00
{% block topsection %}{% endblock %}
2011-09-04 04:21:51 +00:00
{% block content %}{% endblock %}
2012-01-10 21:27:31 +00:00
< / div >
2011-09-13 18:35:06 +00:00
< div id = "footer" >
2011-11-16 16:01:45 +00:00
< div class = "js-main" >
2011-11-15 21:14:09 +00:00
< div class = "column" >
< span > About unglue.it< / span >
< ul >
2012-01-15 18:19:35 +00:00
< li > < a href = "{{ abouturl }}" > About< / a > < / li >
2011-11-15 21:14:09 +00:00
< li > < a href = "http://www.gluejar.com/Blog" > Blog< / a > < / li >
2012-01-15 18:19:35 +00:00
< li > < a href = "{{ pressurl }}" > Press< / a > < / li >
2012-01-06 15:42:17 +00:00
< li > < a href = "http://eepurl.com/fKLfI" > Newsletter< / a > < / li >
2011-11-15 21:14:09 +00:00
< / ul >
< / div >
< div class = "column" >
< span > Your account< / span >
< ul >
{% if user.is_authenticated %}
< li > < a href = "{{editurl}}" > Settings< / a > < / li >
{% endif %}
< li > < a href = "{{rhtoolsurl}}" > Rights Holder Tools< / a > < / li >
< li > < a href = "{{privacyurl}}" > Privacy< / a > < / li >
2011-12-16 22:19:59 +00:00
< li > < a href = "{{termsurl}}" > Terms and Conditions< / a > < / li >
2011-11-20 19:22:51 +00:00
{% if user.is_staff %}
2011-11-16 19:45:37 +00:00
< li > < a href = "{{adminurl}}" > Unglue.it Administration< / a > < / li >
{% endif %}
2011-11-15 21:14:09 +00:00
< / ul >
< / div >
< div class = "column" >
< span > Help< / span >
< ul >
2012-01-06 15:42:17 +00:00
< li > < a href = "{{faqurl}}" > General FAQ< / a > < / li >
< li > < a href = "/faq/rightsholders/" > Rights Holder FAQ< / a > < / li >
2011-11-15 21:14:09 +00:00
< li > < a href = "{% url api_help %}" > API< / a > < / li >
2011-11-16 16:01:45 +00:00
< li > < a href = "mailto:support@gluejar.com" > support@gluejar.com< / a >
2011-11-15 21:14:09 +00:00
< / ul >
< / div >
< div class = "column" >
< span > Contact< / span >
< ul >
< li > General inquiries< / li >
< li > < a href = "mailto:aqf@gluejar.com" > aqf@gluejar.com< / a > < / li >
< li > Rights Holders< / li >
< li > < a href = "mailto:rights@gluejar.com" > rights@gluejar.com< / a > < / li >
< / ul >
< / div >
2011-09-13 18:35:06 +00:00
< / div >
2011-11-15 21:14:09 +00:00
< / div >
2011-11-29 23:14:25 +00:00
{% block counter %}
< script type = "text/javascript" >
var sc_project=7447776;
var sc_invisible=1;
var sc_security="9ae2ba93";
var sc_https=1;
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("< sc " + " ript type = 'text/javascript' src = '" +
scJsHost +
"statcounter.com/counter/counter_xhtml.js'>< /"+"script>");< / script >
< noscript > < div class = "statcounter" > < a title = "web
statistics" href="http://statcounter.com/free-web-stats/"
class="statcounter">< img class = "statcounter"
src="https://c.statcounter.com/7447776/0/9ae2ba93/1/"
alt="web statistics" />< / a > < / div > < / noscript >
{% endblock %}
2011-09-04 04:21:51 +00:00
< / body >
< / html >