-
Notifications
You must be signed in to change notification settings - Fork 28
/
speaker.php
47 lines (47 loc) · 2.06 KB
/
speaker.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<script>
if ( /[?&]receiver/i.test( window.location.search ) ) {
document.documentElement.classList.add( 'receiver' );
}
</script>
<?php wp_head(); ?>
<style>
/* Remove margin for admin bar. */
html {
margin-top: 0 !important;
}
</style>
</head>
<body>
<div id="slide-container">
<div id="current-slide-container"><div id="current-slide"></div></div>
<div id="upcoming-slide-container"><div id="upcoming-slide"><span class="overlay-element label"><?php esc_html_e( 'Upcoming', 'slide' ); ?></span></div></div>
<div class="speaker-controls-time">
<div>
<button id="prev"><?php esc_html_e( 'Previous', 'slide' ); ?></button>
<button id="next"><?php esc_html_e( 'Next', 'slide' ); ?></button>
</div>
<h4 class="label"><?php esc_html_e( 'Slide', 'slide' ); ?></h4>
<div class="slide-count">
<span class="slide-current-number">…</span> of <span class="slide-total-number">…</span>
</div>
<h4 class="label"><?php esc_html_e( 'Time', 'slide' ); ?></h4>
<div class="clock">
<span class="clock-value">0:00 AM</span>
</div>
<h4 class="label"><span class="reset-button"><?php esc_html_e( 'Click to Reset', 'slide' ); ?></span></h4>
<div class="timer">
<span class="hours-value">00</span><span class="minutes-value">:00</span><span class="seconds-value">:00</span>
</div>
</div>
</div>
<div class="speaker-controls-notes">
<h4 class="label"><?php esc_html_e( 'Notes', 'slide' ); ?></h4>
<div class="value"></div>
</div>
<?php wp_footer(); ?>
</body>
</html>