aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..b402c8a
--- /dev/null
+++ b/index.html
@@ -0,0 +1,51 @@
1<!doctype html>
2
3<!--
4 index.html
5 Part of Pointless Viewer, a Beamer presentation viewer
6 Copyright 2018 Pacien TRAN-GIRARD
7 License: GNU GPL v3
8-->
9
10<html>
11 <head>
12 <meta charset="utf-8">
13 <link rel="stylesheet" type="text/css" href="pointless/viewer/viewer.css">
14 <title>Pointless Viewer</title>
15 </head>
16
17 <body>
18 <canvas id="screen" class="centered"></canvas>
19
20 <div id="welcomeScreen" class="centered">
21 <h1>Pointless Viewer</h1>
22
23 <p>This viewer accepts double-width PDF presentations of the following shape:</p>
24 <table>
25 <tr>
26 <td>SLIDES</td>
27 <td>NOTES</td>
28 </tr>
29 </table>
30
31 <p>
32 (L<sup>A</sup>T<sub>E</sub>X-Beamer users may use
33 <code>\setbeameroption{show notes on second screen=right}</code>)
34 </p>
35
36 <p>Please select a PDF presentation file to open.</p>
37 <input id="fileInput" type="file" multiple="false"/>
38 </div>
39
40 <div id="timer" class="notification"></div>
41 <div id="message" class="notification"></div>
42
43 <script type="text/javascript" src="pointless/pdfjs/pdf.js"></script>
44 <script type="text/javascript" src="pointless/viewer/timer.js"></script>
45 <script type="text/javascript" src="pointless/viewer/screen.js"></script>
46 <script type="text/javascript" src="pointless/viewer/stage.js"></script>
47 <script type="text/javascript" src="pointless/viewer/presentation.js"></script>
48 <script type="text/javascript" src="pointless/viewer/viewer.js"></script>
49 <script type="text/javascript" src="pointless/viewer/init.js"></script>
50 </body>
51</html>