48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
Barn Web App - A collection of web-apps for my family's personal use,
|
|
including a recipe database.
|
|
Copyright © 2023 Benjamin Stadlbauer
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or (at
|
|
your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
|
|
General Public License for more details.
|
|
|
|
This program comes with a copy of the GNU Affero General Public License
|
|
file at the root of this project.
|
|
{% endcomment %}
|
|
|
|
{% block head %}
|
|
{% load static %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<nav>
|
|
<ul>
|
|
<li><a href="{% url 'index' %}">Home</a></li>
|
|
{% if user.is_authenticated %}
|
|
<li><a href="{% url 'profile' %}">Profile {{ user.username }}</a></li>
|
|
<li><a href="{% url 'logout' %}">Logout</a></li>
|
|
{% else %}
|
|
<li><a href="{% url 'login' %}">Login</a></li>
|
|
<li><a href="{% url 'new-user' %}">Create account</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
<ul>
|
|
<li><a href="https://benjamin.stadlbauer.wien/git/Barn/django-project">Source code on Forgejo</a></li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
{% block main %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
{% endblock %}
|