File size: 815 Bytes
513cacb c143324 513cacb c143324 513cacb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}TalkToDoc{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body class="{% block body_class %}{% endblock %}">
<a class="skip-link" href="#main-content">Skip to main content</a>
<div class="app-shell {% block shell_class %}{% endblock %}">
{% block header %}{% endblock %}
<main class="app-main" id="main-content">
{% block content %}{% endblock %}
</main>
</div>
<div class="toast" id="toast" role="status" aria-live="polite"></div>
<script src="{{ url_for('static', filename='js/shared.js') }}"></script>
{% block scripts %}{% endblock %}
</body>
</html>
|