-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 958 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>PC-RIM 2003 Volunteer Spectacular</title>
<link rel="stylesheet" type="text/css" href="main.css"/>
<link rel="stylesheet" type="text/css" href="table.css"/>
<link rel="stylesheet" type="text/css" href="customlayout.css"/>
<link rel="shortcut icon" href="Peace Corps swoosh.svg"/>
<meta
http-equiv="Content-Security-Policy"
content="script-src http: https: 'unsafe-inline' 'unsafe-eval';"
/>
<script type="module">
import { setup } from './control.js'
document.addEventListener('DOMContentLoaded', () => {
setup('bismillah.xml', 'content', 'slider', 'music')
})
</script>
</head>
<body>
<aside id="scrollbar">
<section id="slider"></section>
</aside>
<main id="display">
<ol id="content"></ol>
<audio id="music" controls></audio>
</main>
</body>
</html>