-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (63 loc) · 3.06 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
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<!-- Reveal CSS -->
<link data-trunk rel="css" href="public/reveal/css/reveal.css" />
<!-- themes: beige, black, blood, league, moon, night, serif, simple, sky, solarized, white -->
<link data-trunk rel="css" href="public/reveal/css/theme/black.css" />
<!-- Theme used for syntax highlighting of code -->
<link data-trunk rel="css" href="public/reveal/lib/css/zenburn.css" />
<!-- Project CSS -->
<!-- Add a plain CSS file: see https://trunkrs.dev/assets/#css -->
<!-- If using Tailwind with Leptos CSR, see https://trunkrs.dev/assets/#tailwind instead-->
<link data-trunk rel="css" href="public/css/styles.css" />
<!-- Reveal JS -->
<script data-trunk src="public/reveal/lib/js/head.min.js"></script>
<script data-trunk src="public/reveal/js/reveal.js"></script>
<!-- Include favicon in dist output: see https://trunkrs.dev/assets/#icon -->
<link data-trunk rel="icon" href="public/favicon.ico" />
<!-- Static Files -->
<link data-trunk rel="copy-dir" href="public/" />
<!-- include support for `wasm-bindgen --weak-refs` - see: https://rustwasm.github.io/docs/wasm-bindgen/reference/weak-references.html -->
<link data-trunk rel="rust" data-wasm-opt="z" data-weak-refs />
<!-- Init Reveal JS -->
<script type="module">
addEventListener("TrunkApplicationStarted", (event) => {
console.log("application started - bindings:", window.wasmBindings, "WASM:", event.detail.wasm);
Reveal.initialize({
dependencies: [
{
src: 'public/reveal/plugin/highlight/highlight.js',
async: true,
callback: function () {
hljs.initHighlightingOnLoad();
}
}
]
});
});
</script>
<!-- Include Manifest -->
<link data-trunk rel="copy-file" href="manifest.json" />
<link rel="manifest" href="manifest.json" />
<title>Reveal Leptos</title>
<meta name="description" content="The Pleasure of Reveal.JS with the Power of Leptos!">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://reveal-leptos.netlify.app/">
<meta property="og:title" content="Reveal Leptos">
<meta property="og:description" content="The Pleasure of Reveal.JS with the Power of Leptos!">
<meta property="og:image" content="https://reveal-leptos.netlify.app/public/content/section-about.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://reveal-leptos.netlify.app/">
<meta property="twitter:title" content="Reveal Leptos">
<meta property="twitter:description" content="The Pleasure of Reveal.JS with the Power of Leptos!">
<meta property="twitter:image" content="https://reveal-leptos.netlify.app/public/content/section-about.png">
<!-- Other meta tags -->
<meta name="robots" content="noindex">
<meta name="keywords" content="reveal.js, leptos, web development, presentation, slides">
<meta name="author" content="[email protected]">
</head>
<body></body>
</html>