staff-directory/index.html

52 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Damian Freeman" />
<title>Staff Directory</title>
<link
rel="icon"
href="https://static.libraryofcode.org/library_of_code.png"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container-fluid">
<h1>
Staff Directory <small class="text-muted">directory.libraryofcode.org</small>
<h1>
<table class="table" id="directory">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Title/Department</th>
<th scope="col">Email</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div
id="loading"
class="alert alert-info"
role="alert"
style="display: block"
>
Loading... |
</div>
<script src="./script.js"></script>
</div>
</body>
</html>