19 lines
709 B
HTML
19 lines
709 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% block title %}Medwings{% endblock title %}</title>
|
|
<meta name="description" content="{% block description %}An early warning system for medical deterioration.{% endblock description %}">
|
|
<meta name="author" content="{% block author %}Julian Lobbes{% endblock author %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'dist/main.css' %}">
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
<script src="{% static 'dist/main.js' %}"></script>
|
|
</body>
|
|
</html>
|