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

section.html « slide « layouts - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aecfc896446c376b99ee948b2a338c3557f8d100 (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="{{"/vendor/revealjs/reveal.js-master/dist/reset.css"|relURL}}">
		<link rel="stylesheet" href="{{"/vendor/revealjs/reveal.js-master/dist/reveal.css"|relURL}}">
		<link rel="stylesheet" href="{{"/vendor/revealjs/reveal.js-master/dist/theme/black.css"|relURL}}" id="theme">
		<!-- Theme used for syntax highlighted code -->
		<link rel="stylesheet" href="{{"/vendor/revealjs/reveal.js-master/plugin/highlight/monokai.css"|relURL}}" 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="{{"/vendor/revealjs/reveal.js-master/dist/reveal.js"|relURL}}"></script>
		<script src="{{"/vendor/revealjs/reveal.js-master/plugin/notes/notes.js"|relURL}}"></script>
		<script src="{{"/vendor/revealjs/reveal.js-master/plugin/markdown/markdown.js"|relURL}}"></script>
		<script src="{{"/vendor/revealjs/reveal.js-master/plugin/highlight/highlight.js"|relURL}}"></script>

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


	</body>
</html>