pdlzbs/core/templates/base.html

107 lines
3.7 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 bg-stone-50">
<header class="w-full bg-white shadow-md border-b border-slate-400 pb-1">
<div
class="m-4 container flex flex-col lg:flex-row items-center lg:items-start justify-around mx-auto"
>
<div class="self-center">
<img class="max-h-[200px]" src="{% static 'podlzbs.jpg' %}" alt="" />
</div>
<div class="flex flex-col lg:self-end shrink-0">
<div class="mb-4 mx-auto p-2 text-center">
<h1>
Podlaski Związek <br />
Brydża Sportowego
</h1>
</div>
{% if nav %}
<nav>
<ul
class="flex flex-wrap justify-center lg:items-end gap-3 text-[15px] leading-5 m-2"
>
{% for button in nav %}
<li>
<a
class="nbutton home {% if button.href == '/' %}{{ home }}{% elif button.href in request.path %}active{% endif %}"
href="{{ button.href }}"
target="{% if button.blank %}_blank{% else %}_self{% endif %}"
>{{ button.title }}</a
>
</li>
{% endfor %}
</ul>
</nav>
{% endif %}
</div>
<nav class="flex flex-wrap justify-center items-center gap-6 mt-8">
<div title="Cezar">
<a href="http://www.msc.com.pl/cezar" target="_blank"
><img class="max-h-12" src="{% static 'cezar.gif' %}" alt="Cezar"
/></a>
</div>
<div title="PZBS">
<a href="http://www.pzbs.pl" target="_blank"
><img src="{% static 'pzbs.webp' %}" alt="PZBS"
/></a>
</div>
<div title="Łomżyńska Akademia Brydża Sportowego">
<a href="http://www.labs.lomza.pl/" target="_blank"
><img class="max-h-12" src="{% static 'labs.jpg' %}" alt="ŁABS"
/></a>
</div>
<div title="Kareta">
<a href="https://kareta.pzbs.pl/" target="_blank"
><img
class="max-h-12"
src="{% static 'kareta.jpg' %}"
alt="Kareta"
/></a>
</div>
<div>
<a
id="atu"
href="{% url '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"
><img src="{% static 'mbkb.webp' %}" alt="MBKB"
/></a>
</div>
</nav>
</div>
</header>
<main
class="container xl:max-w-screen-xl mx-auto p-4 prose-img:m-1 prose-p:my-[0.3em]"
>
{% block content %}{% endblock %}
</main>
<footer class="footer text-center font-light italic">
<h6 class="mb-4">&copy; {% now "Y" %} Mikołaj Kubiczek</h6>
</footer>
</body>
</html>