57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
{% load static %}
|
|
{% load compress %}
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="author" content="Angling Trust">
|
|
<meta name="description" content="League & Match Results System">
|
|
<meta name="keywords" content="Angling, Trust, Results, Fishing">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta property="og:title" content="Angling Trusts Results">
|
|
<meta property="og:description" content="League & Match Results System">
|
|
<meta property="og:image" content="">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:locale" content="en_GB">
|
|
|
|
<meta name="twitter:title" content="Angling Trust Results">
|
|
<meta name="twitter:description" content="League & Match Results System">
|
|
<meta name="twitter:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
<title>
|
|
Angling Trust Results{% block title %}{% endblock %}
|
|
</title>
|
|
|
|
<link rel="apple-touch-icon" href="">
|
|
<link rel="icon" sizes="16x16" href="">
|
|
<link rel="icon" sizes="32x32" href="">
|
|
<link rel="icon" href="">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/custom.css' %}" media="screen">
|
|
|
|
{% include "includes/fonts.html" %}
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body class="overflow-y-auto font-montserrat bg-body-tertiary">
|
|
|
|
{% include "includes/navbar.html" %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
<script>
|
|
const CSRF_MiddlewareToken = "{{ csrf_token }}";
|
|
const currentUserId = "{{ request.user.id }}";
|
|
</script>
|
|
|
|
<script src="{% static 'js/jquery-3.6.3.min.js' %}"></script>
|
|
<script src="{% static 'js/jquery.validate.min.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
|
|
<script src="{% static 'js/api.js' %}"></script>
|
|
<script src="{% static 'js/base.js' %}"></script>
|
|
{% block scripts %} {% endblock %}
|
|
</body>
|
|
</html> |