2012-09-25 22:58:59 +02:00
|
|
|
{% extends "zephyr/base.html" %}
|
|
|
|
|
2012-10-16 06:03:29 +02:00
|
|
|
{% 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 %}
|
|
|
|
|
2012-09-25 22:58:59 +02:00
|
|
|
{% block customhead %}
|
2013-01-30 21:44:52 +01:00
|
|
|
<link href="/static/styles/portico.css?dummy_time={% now "U" %}" rel="stylesheet">
|
2012-09-25 22:58:59 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="navbar">
|
|
|
|
<ul class="nav pull-right">
|
2012-10-15 22:41:01 +02:00
|
|
|
<li><a href="/accounts/login/?next=/">Log in</a></li>
|
2013-02-06 17:32:06 +01:00
|
|
|
<li><span class="navbar-text">·</span></li>
|
2012-11-21 21:14:55 +01:00
|
|
|
<li><a href="{% url zephyr.views.accounts_home %}">Register</a></li>
|
2012-09-25 22:58:59 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span2">
|
|
|
|
</div>
|
|
|
|
<div class="span10">
|
2012-10-25 06:09:28 +02:00
|
|
|
<div class="title">
|
|
|
|
<a class="title" href="/">Humbug</a>
|
|
|
|
<span class="for_you">{% block for_you %}{% endblock %}</span>
|
|
|
|
</div>
|
2012-10-16 05:49:53 +02:00
|
|
|
{% block portico_content %}
|
2012-09-25 22:58:59 +02:00
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-02-06 17:32:06 +01:00
|
|
|
<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>
|
2012-09-25 22:58:59 +02:00
|
|
|
{% endblock %}
|