-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
74 lines (72 loc) · 3.33 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Trino presentations</title>
<link rel="stylesheet" href="./reveal/dist/reset.css">
<link rel="stylesheet" href="./reveal/dist/reveal.css">
<link rel="stylesheet" href="./css/trino-theme.css" id="theme">
<link rel="stylesheet" href="./css/trino.css"/>
<link rel="stylesheet" href="./css/colors.css">
<script src="./reveal/plugin/highlight/highlight.js"></script>
<script>
document.write('<link rel="stylesheet" href="./reveal/css/print/'
+ (window.location.search.match(/print-pdf/gi) ? 'pdf' : 'paper')
+ '.css" type="text/css" media="print">');
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<section>
<h1>Trino presentations</h1>
<img height="250" src="./assets/logos/icon/trino-icon.svg">
<br />
<p><small>Press ? for usage information</small></p>
</section>
<section>
<h2>General presentations</h2>
<ul>
<li><a href="./presentations/what-is-trino/index.html" target="_blank">What is Trino?</a></li>
<li><a href="presentations/oque-e-trino/index.html" target="_blank">O que é o Trino?</a></li>
<li><a href="./presentations/ways-to-run-trino/index.html" target="_blank">Ways to run Trino</a></li>
<li><a href="./presentations/sql-advanced-overview/index.html" target="_blank">Advanced SQL with Trino</a></li>
<li><a href="./presentations/trivia/index.html" target="_blank">Trino trivia</a></li>
<li><a href="./presentations/big-data/index.html" target="_blank">Big data whirlwind tour</a></li>
<li><a href="./presentations/introduction/index.html" target="_blank">Trino presentations how-to</a></li>
</ul>
</section>
<section>
<h2>SQL-related presentations</h2>
<ul>
<li><a href="./presentations/sql-trino/index.html" target="_blank">SQL and Trino</a></li>
<li><a href="./presentations/sql-basics/index.html" target="_blank">SQL basics with Trino</a></li>
<li><a href="./presentations/sql-adv-analytics/index.html" target="_blank">Advanced analytics with SQL and Trino</a></li>
<li><a href="./presentations/sql-data-mgt/index.html" target="_blank">Data management with SQL and Trino</a></li>
<li><a href="./presentations/sql-functions/index.html" target="_blank">Functions with SQL and Trino</a></li>
<li><a href="./presentations/moving-supplies/index.html" target="_blank">Moving supplies</a></li>
<li><a href="./presentations/getting-ready-to-summit/index.html" target="_blank">Getting ready to summit</a></li>
</ul>
</section>
</section>
</div>
</div>
<script src="./reveal/dist/reveal.js"></script>
<script src="./reveal/plugin/notes/notes.js"></script>
<script src="./reveal/plugin/markdown/markdown.js"></script>
<script src="./reveal/plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
parallaxBackgroundImage: './assets/logos/space-background-faded.svg',
parallaxBackgroundSize: '2853px 1000px',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>