mirror of https://github.com/zulip/zulip.git
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:
parent
59bfe38448
commit
c7447e19d9
|
@ -15,6 +15,7 @@ hence the name.
|
||||||
<div class="navbar">
|
<div class="navbar">
|
||||||
<ul class="nav pull-right">
|
<ul class="nav pull-right">
|
||||||
<li><a href="/accounts/login/?next=/">Log in</a></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>
|
<li><a href="{% url zephyr.views.accounts_home %}">Register</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,5 +31,15 @@ hence the name.
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</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 %}
|
{% endblock %}
|
||||||
|
|
|
@ -67,3 +67,8 @@ img.screenshot{
|
||||||
/* This makes it so screenshots are still shown if they are larger than their span.*/
|
/* This makes it so screenshots are still shown if they are larger than their span.*/
|
||||||
max-width: 150%;
|
max-width: 150%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.little-bullet {
|
||||||
|
/* In our footer navbar, the · doesn't get appropriate padding without this */
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue