Add a footer to all our portico content.

This makes /api look less abruptly cut off at the end.

(imported from commit 296e431dad2aa1f72b02bb59f5572c0bf33a7bc9)
This commit is contained in:
Waseem Daher 2013-02-06 11:32:06 -05:00
parent 59bfe38448
commit c7447e19d9
2 changed files with 17 additions and 1 deletions

View File

@ -15,6 +15,7 @@ hence the name.
<div class="navbar">
<ul class="nav pull-right">
<li><a href="/accounts/login/?next=/">Log in</a></li>
<li><span class="navbar-text">·</span></li>
<li><a href="{% url zephyr.views.accounts_home %}">Register</a></li>
</ul>
</div>
@ -30,5 +31,15 @@ hence the name.
{% endblock %}
</div>
</div>
<div class="navbar">
<ul class="nav pull-right">
<li><span class="navbar-text">Humbug © 2013</span></li>
<li><span class="navbar-text little-bullet">·</span></li>
<li><a href="/terms">Legal</a></li>
<li><span class="navbar-text">·</span></li>
<li><a href="/accounts/login/?next=/">Log in</a></li>
<li><span class="navbar-text">·</span></li>
<li><a href="{% url zephyr.views.accounts_home %}">Register</a></li>
</ul>
</div>
{% endblock %}

View File

@ -67,3 +67,8 @@ img.screenshot{
/* This makes it so screenshots are still shown if they are larger than their span.*/
max-width: 150%;
}
.little-bullet {
/* In our footer navbar, the · doesn't get appropriate padding without this */
padding-left: 15px;
}