Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « slide « layouts - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cda8ffbb91b9bf2e05378e41700a422e0df5fd9 (plain)
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
<!doctype html>
<html>
	<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">


		<link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/dist/reset.css">
		<link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/dist/reveal.css">
		<link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/dist/theme/black.css" id="theme">
		<!-- Theme used for syntax highlighted code -->
		<link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/plugin/highlight/monokai.css" id="highlight-theme">
	</head>
	<body>
		<div class="reveal">
			<div class="slides">
				<section data-markdown
				         data-separator="^---"
					 data-separator-vertical="^___"
					 data-separator-notes="^Note:">
				{{ .RawContent }}
				</section>
			</div>
		</div>	

		<script src="https://unpkg.com/reveal.js@4.0.2/dist/reveal.js"></script>
		<script src="https://unpkg.com/reveal.js@4.0.2/plugin/notes/notes.js"></script>
		<script src="https://unpkg.com/reveal.js@4.0.2/plugin/markdown/markdown.js"></script>
		<script src="https://unpkg.com/reveal.js@4.0.2/plugin/highlight/highlight.js"></script>

		<script>
			Reveal.initialize({
					plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ],
			      });
		</script>


	</body>
</html>