Application de gestion de courses avec génération de dossards avec QRcode et scan des coureurs à l'arrivée.
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.
 
 
 
 
 

31 lines
1.2 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>CrossApp</title>
{% load static %}
<link rel="icon" type="image/png" href="{% static 'person-running-solid-full.png' %}">
<!-- SB Admin 2 Bootstrap CSS -->
<link href="{% static 'sb-admin-2/sb-admin-2.min.css' %}" rel="stylesheet">
<!-- Font Awesome -->
<link href="{% static 'fontawesomefree/css/fontawesome.css' %}" rel="stylesheet">
<link href="{% static 'fontawesomefree/css/brands.css' %}" rel="stylesheet">
<link href="{% static 'fontawesomefree/css/solid.css' %}" rel="stylesheet">
<!-- Custom styles -->
{% block extra_css %}{% endblock %}
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
{% block content %}{% endblock %}
</div>
<!-- jQuery (nécessaire pour Bootstrap) -->
<script src="{% static 'jquery/jquery-3.6.0.min.js' %}"></script>
<!-- Bootstrap core JavaScript -->
<script src="{% static 'bootstrap/bootstrap.bundle.min.js' %}"></script>
<!-- SB Admin 2 JS -->
<script src="{% static 'sb-admin-2/sb-admin-2.min.js' %}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>