-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
<html>
<head>
<title>Esri Reveal.js Conference Slide Template History</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/esri/[email protected]/dist/css/calcite-web.min.css">
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<div id="app" class="app" v-cloak>
<div class="grid">
<div class="gridItem" v-for="iframe in iframes">
<h2 class="itemTitle">{{ iframe.label }}</h2>
<div class="aspect-ratio">
<iframe v-bind:src="iframe.url"></iframe>
</div>
</div>
</div>
</div>
<footer class="footer link-dark-gray" role="contentinfo">
<div class="grid-container">
<div class="column-24">
<p>The <a href="https://github.com/esri/reveal.js">Reveal.js templates</a> were created by duplicating the
official slide deck
template as close as possible. The size and alignment of the text may not be exact to the original
design.</p>
<p>Missing a year? Send a pull request to the <a href="https://github.com/gavinr/esri-reveal.js-history">code
repository</a> based on <a href="https://github.com/gavinr/esri-reveal.js-history#maintenance">these
instructions</a>.</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<script src="main.js"></script>
</body>
</html>