pdlzbs/core/templates/base.html

66 lines
3.3 KiB
HTML

<!DOCTYPE html>
{% load static tailwind_tags %}
<html lang="pl" dir="ltr">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Podlaski Związek Brydża Sportowego" />
<meta name="author" content="Mikołaj Kubiczek" />
<title>
{% block title %}Podlaski Związek Brydża Sportowego{% endblock %}
</title>
<base href="/" />
{% tailwind_css %}
</head>
<body class="antialiased flex flex-col gap-4">
<header class="w-full m-4 flex justify-center bg-white shadow-lg border-b border-slate-400 mx-auto pb-1">
<div title="logoMałe.png"><img class="min-w-[145px] min-h-[125px]" src="{% static 'logo.webp' %}" /></div>
<div class="flex flex-col">
<div class="flex mt-[40px] mb-[20px] items-center justify-end gap-6 pr-[50px]">
<div title="Cezar">
<a href="http://www.msc.com.pl/cezar" target="_blank"><img class="max-h-12" src="{% static 'cezar.gif' %}" /></a>
</div>
<div title="PZBS">
<a href="http://www.pzbs.pl" target="_blank"><img src="{% static 'pzbs.webp' %}" /></a>
</div>
<div title="Łomżyńska Akademia Brydża Sportowego">
<a href="http://www.labs.lomza.pl/" target="_blank"><img src="{% static 'labs.webp' %}" /></a>
</div>
<div>
<a href="https://andys0101.wixsite.com/pdlzbs/atu" target="_self" id="atu" class="h-[40px] w-[48px] items-center text-white"
><div class="flex h-full items-center justify-center"><span class="text-[13px] font-bold">ATU</span></div></a
>
</div>
<div title="Miejski Białostocki Klub Brydżowy">
<a href="https://andys0101.wixsite.com/pdlzbs/mbkb" target="_self"><img src="{% static 'mbkb.webp' %}" /></a>
</div>
</div>
<nav>
<ul class="ml-[-12px] flex justify-end gap-3 text-[15px] leading-5">
<li class="nav-item {{ home }}"><a href="{% url 'home' %}">Strona&nbsp;główna</a></li>
<li class="nav-item {% if 'zarzad' in request.path %}active{% endif %}"><a href="{% url 'administration' %}">Zarząd</a></li>
<li class="nav-item {% if 'rodo' in request.path %}active{% endif %}"><a href="{% url 'rodo' %}">RODO</a></li>
<li class="nav-item {% if 'liga' in request.path %}active{% endif %}"><a href="{% url 'league' %}">III&nbsp;Liga</a></li>
<li class="nav-item {% if 'kalendarz' in request.path %}active{% endif %}"><a href="{% url 'calendar' %}">Kalendarz&nbsp;2022</a></li>
<li class="nav-item {% if 'grandprix' in request.path %}active{% endif %}"><a href="{% url 'gpx' %}">GPB&nbsp;2020</a></li>
<li class="nav-item {% if 'inneturnieje' in request.path %}active{% endif %}"><a href="{% url 'others' %}">Inne&nbsp;turnieje</a></li>
<li class="nav-item {% if 'skladki' in request.path %}active{% endif %}"><a href="{% url 'membership' %}">Składki&nbsp;członkowskie</a></li>
</ul>
</nav>
</div>
</header>
<main class="container mx-auto">
{% block content %}{% endblock %}
</main>
<footer class="footer text-center font-light italic">
&copy; {% now "Y" %} Mikołaj Kubiczek
</footer>
</body>
</html>