JS-P04/app/templates/base.html
Kacper Donat 3a649df550 Whole app
2020-06-08 22:46:01 +02:00

38 lines
1.4 KiB
HTML

<!doctype html>
<html lang="pl">
{% load static bootstrap4 %}
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<title>Galeria Zdjęć</title>
<script src="{% static 'dist/bundle.js' %}"></script>
</head>
<body>
<header class="container d-flex align-items-center justify-content-end py-2">
{% if user.is_authenticated %}
<span>Zalogowany jako: <span>{{ user.username }}</span></span> <a href="{% url 'logout' %}" class="btn btn-link">Wyloguj się</a>
{% else %}
<a href="{% url 'login' %}" class="btn btn-link">Zaloguj się</a> lub <a href="{% url 'register' %}" class="btn btn-link">zarejestruj</a>
{% endif %}
</header>
<main class="app container">
<header class="app__header">
<h1>Galeria Zdjęć</h1>
{% block subtitle %}{% endblock %}
</header>
<nav aria-label="Okruszki">
<ol class="breadcrumb">
{% block breadcrumbs %}{% endblock breadcrumbs %}
</ol>
</nav>
{% block content %}
{% endblock content %}
</main>
</body>
</html>