80 lines
3.4 KiB
HTML
80 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
{# raw url references raise test errors in tests for django registration; this is a workaround #}
|
|
{% url privacy as privacyurl %}
|
|
{% url regluit.frontend.views.edit_user as editurl %}
|
|
{% url rightsholders as rhtoolsurl %}
|
|
{% url faq as faqurl %}
|
|
|
|
<html>
|
|
<head>
|
|
<title>unglue.it {% block title %}{% endblock %}</title>
|
|
<link type="text/css" rel="stylesheet" href="/static/css/sitewide.css" />
|
|
<link href="/static/css/book-panel.css" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript" src="/static/js/jquery-1.6.3.min.js"></script>
|
|
<script type="text/javascript" src="/static/js/book-panel.js"></script>
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="js-page-wrap">
|
|
<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>
|
|
</div>
|
|
{% if not suppress_search_box %}
|
|
<div class="js-search">
|
|
<div class="js-search-inner">
|
|
<form action="{% url search %}" method="get">
|
|
<input type="text" placeholder="Search for a book..." size="25" class="inputbox" name="q" value="{{ q }}">
|
|
<input type="button" onclick="this.form.searchword.focus();" class="button" value="Search">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="js-topmenu">
|
|
<ul class="menu">
|
|
{% if user.is_authenticated %}
|
|
<li class="first"><a href="/supporter/{{user.username}}"><span id="welcome">Welcome, {{ user.username }}</span></a></li>
|
|
<li><a href="{% url auth_logout %}"><span>Sign Out</span></a></li>
|
|
{% else %}
|
|
<li class="first"><a href="{% url auth_login %}?next={% firstof request.path '/' %}"><span>Sign In</span></a></li>
|
|
{% endif %}
|
|
<li><a href="/stub/tour"><span>Tour</span></a></li>
|
|
<li><a href="{{faqurl}}"><span>FAQs</span></a></li>
|
|
<li><a href="/stub/Help"><span>Help</span></a></li>
|
|
{% if not user.is_authenticated %}
|
|
<li class="last"><a href="{% url registration_register %}"><span>sign up</span></a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% block topsection %}{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<p>
|
|
<a href="{{privacyurl}}"><span>Privacy</span></a>
|
|
<a href="{{rhtoolsurl}}"><span>Rightsholder tools</span></a>
|
|
<a href="{% url api_help %}"<span>API</span></a>
|
|
{% if user.is_authenticated %}
|
|
<a href="{{editurl}}"><span>Settings</span></a>
|
|
{% endif %}
|
|
<a href="/stub/terms_and_conditions"<span>Terms and Conditions</span></a>
|
|
<a href="/stub/about"><span>About</span></a>
|
|
<a href="/stub/contact"><span>Contact</span></a>
|
|
<a href="/stub/page_for_lockss_harvester"><span>LOCKSS</span></a>
|
|
<a href="http://www.gluejar.com/Blog"><span>Blog</span>
|
|
</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|