13 lines
842 B
HTML
13 lines
842 B
HTML
{% load static %}
|
|
<meta charset="UTF-8">
|
|
<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 'apple-touch-icon.png' %}">
|
|
<link rel="apple-touch-icon" href="{% static 'apple-touch-icon.png' %}">
|
|
<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="width=device-width, initial-scale=1.0, user-scalable=no" />
|
|
<link rel="manifest" href="{% static "manifest.json" %}" /> |