You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html>
|
|
{% load static %}
|
|
{% load qr_code %}
|
|
|
|
<head>
|
|
{% include 'tournaments/base_head.html' %}
|
|
|
|
<script src="{% static 'tournaments/js/alpine.min.js' %}"></script>
|
|
|
|
<title>{% block head_title %}Page Title{% endblock %}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<div class="grid-x">
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="bubble">
|
|
<img
|
|
src="{% static 'tournaments/images/PadelClub_logo_512.png' %}"
|
|
class="logo inline"
|
|
/>
|
|
<div class="inline">
|
|
<h1 class="club">{% block first_title %}Page Title{% endblock %}</h1>
|
|
<h1 class="event">{% block second_title %}Page Title{% endblock %}</h1>
|
|
<!-- <span>Propulsé par Padel Club</span> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="cell medium-6 large-6 topblock my-block">
|
|
<div class="alignright">
|
|
{% qr_from_text qr_code_url options=qr_code_options %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<!-- Content -->
|
|
{% block content %}
|
|
<!-- The content of child templates will be inserted here -->
|
|
{% endblock %}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|