attempted to use as much generic view as possible. the previous views were generic anyway. also did some managing of inheritance (extends/includes)
12 lines
764 B
HTML
12 lines
764 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 'benchcoach.svg' %}">
|
|
<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 'benchcoach.svg' %}"> |