27 lines
768 B
HTML
27 lines
768 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ title or 'Doris Schoolhouse' }}</title>
|
|
<link rel="stylesheet" href="/static/app.css">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div>
|
|
<h1>Doris Schoolhouse</h1>
|
|
<p>School intake, recordings, D2L sync, and Paperless linkage.</p>
|
|
</div>
|
|
<nav>
|
|
<a href="/">Dashboard</a>
|
|
<a href="/assignments/upload">Assignment Upload</a>
|
|
<a href="/recordings/upload">Recording Upload</a>
|
|
</nav>
|
|
</header>
|
|
<main class="page-shell">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|