Skip to content

Commit 3385abe

Browse files
committed
Template for tutorials for markdown processing to HTML
1 parent 215b02e commit 3385abe

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8' />
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
7+
<meta name="description" content="Scalatron Tutorial" />
8+
9+
<link rel="stylesheet" type="text/css" media="screen" href="./tutorial.css">
10+
11+
<title>{{ page.title }}</title>
12+
13+
<!-- the following code snippets activates Google Analytics, which allows me to understand which parts of
14+
the tutorial are being used and how the tutorial could be improved.
15+
Thanks for your support. -->
16+
<script type="text/javascript">
17+
var _gaq = _gaq || [];
18+
_gaq.push(['_setAccount', 'UA-31522898-1']);
19+
_gaq.push(['_trackPageview']);
20+
21+
(function() {
22+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
23+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
24+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
25+
})();
26+
</script>
27+
</head>
28+
29+
<body>
30+
{{ content }}
31+
</body>
32+
</html>

0 commit comments

Comments
 (0)