mirror of https://github.com/zulip/zulip.git
39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
{% extends "zephyr/base.html" %}
|
|
|
|
{% comment %}
|
|
A base template for stuff like login, register, etc.
|
|
|
|
Not inside the app itself, but covered by the same structure,
|
|
hence the name.
|
|
{% endcomment %}
|
|
|
|
{% block customhead %}
|
|
<link href="/static/public/styles/portico.css?dummy_time={% now "U" %}" rel="stylesheet">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="navbar">
|
|
<ul class="nav pull-right">
|
|
{% if full_navbar %}
|
|
<li><a href="#">Learn More</a></li>
|
|
<li><a href="#">Pricing</a></li>
|
|
<li><a href="https://blog.humbughq.com/">Blog</a></li>
|
|
{% endif %}
|
|
<li><a href="/accounts/login/?next=/">Log in</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="span2">
|
|
</div>
|
|
<div class="span10">
|
|
<div class="title">
|
|
<a class="title" href="/">Humbug</a>
|
|
<span class="for_you">{% block for_you %}{% endblock %}</span>
|
|
</div>
|
|
{% block portico_content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|