added folders for js and css files, added bootstrap files to static removed requirement for bootstrap python package (bootstrap now in static)
48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"> {% load static %}
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Title{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<script src="{% static 'js/bootstrap.bundle.js' %}" crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}">
|
|
<link rel='stylesheet' href="{% static 'css/base.css' %}">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<meta name="apple-mobile-web-app-title" content="BenchCoach">
|
|
<meta name='viewport' content='viewport-fit=cover, width=device-width, initial-scale=1.0'>
|
|
<link rel="apple-touch-icon" href="{% static 'favicon.ico' %}">
|
|
</head>
|
|
|
|
<body class="bg-light">
|
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top" style="padding-top: env(safe-area-inset-top);">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand fw-bolder text-uppercase" href="{% url 'home' %}">⚾️ Bench Coach</a>
|
|
|
|
<div class="collapse navbar-collapse">
|
|
<ul class="navbar-nav mr-auto">
|
|
<li>
|
|
<a class="nav-link" href="{% url 'events list' %}">Events</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'players list' %}">Players</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'teams list' %}">Teams</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'venues list' %}">Venues</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main role="main" class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
</body>
|
|
</html> |