mirror of
https://github.com/sartography/uva-covid19-testing-communicator.git
synced 2025-02-24 21:08:06 +00:00
31 lines
586 B
HTML
31 lines
586 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Be SAFE Notification System</title>
|
|
<base href="/">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://use.typekit.net/kwp6dli.css">
|
|
<link rel="shortcut icon" href="{{ base_href + url_for('static', filename='favicon.ico') }}">
|
|
|
|
{% include 'includes/header.html' %}
|
|
{% include 'includes/scripts.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'includes/sidenav.html' %}
|
|
|
|
{{ content | safe }}
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|