suppress top signup button on landing page

pull/1/head
Andromeda Yelton 2012-11-06 09:34:31 -05:00
parent b3f21ecce3
commit 0bcf845058
1 changed files with 6 additions and 1 deletions

View File

@ -118,7 +118,12 @@
<div class="js-topmenu">
<ul class="menu">
<li><a href="{% url auth_login %}?next={% firstof request.path '/' %}"><span>Sign In</span></a></li>
<li id="expander" class="last"><a href="{% url registration_register %}"><span>Sign Up</span></a></li>
{% if not suppress_search_box %}
{% comment %}
don't display this on landing page where it's superseded by big signup box in splash area
{% endcomment %}
<li id="expander" class="last"><a href="{% url registration_register %}"><span>Sign Up</span></a></li>
{% endif %}
</ul>
</div>
{% endif %}