takahe/templates/base_plain.html

30 wiersze
870 B
HTML

{% extends "base.html" %}
{% block body_class %}no-sidebar{% endblock %}
{% block body_main %}
<header>
<menu>
{% if not request.user.is_authenticated and current_page == "about" and config.signup_allowed %}
<a href="/auth/signup/">Sign Up</a>
{% else %}
<a href="/">Home</a>
{% endif %}
<a class="logo" href="/">
<img src="{{ config.site_icon }}" width="32">
{{ config.site_name }}
</a>
{% if request.user.is_authenticated %}
<a href="javascript:history.back()">Back</a>
{% else %}
<a href="/auth/login/">Login</a>
{% endif %}
</menu>
</header>
<div id="main-content">
{% block content %}
{% endblock %}
</div>
{% endblock %}