-
Notifications
You must be signed in to change notification settings - Fork 1
/
paste.html
39 lines (34 loc) · 1.52 KB
/
paste.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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8' />
<title>Demo</title>
<link rel='stylesheet' href='//ohjelmointikurssi.github.io/cdn/tmc-web-client.css' />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<div id="container">
<h1>Jaettu peli</h1>
<section class="notice">
<strong><i class="fa fa-info-circle"></i> Haluatko oppia tekemään tämänlaisia pelejä?</strong> Vieraile <a href="https://ohjelmointikurssi.github.io/">kurssimateriaalissa</a>.
</section>
<p>
Voit muokata pelin logiikkaa alla olevassa editorissa ja ajaa sitä painamalle "Run"-näppäintä.
</p>
<div id="tmc-paste"></div>
</div>
<script src='//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/jszip/2.2.2/jszip.js'></script>
<script src='//stuk.github.io/jszip-utils/dist/jszip-utils.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.runtime.min.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/ace/1.2.2/ace.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/diff_match_patch/20121119/diff_match_patch.js'></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.5.5/clipboard.min.js"></script>
<script src='//ohjelmointikurssi.github.io/cdn/tmc-web-client-min.js'></script>
<script>
$(document).ready(function() {
TMCWebClient.initializePaste();
});
</script>
</body>
</html>