-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.html
25 lines (25 loc) · 953 Bytes
/
base.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ filename }}</title>
<link rel="stylesheet" href="{{ cssfilename }}">
<link rel="stylesheet" href="base-style.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<script>
$(function() {
$( ".wrapper" ).draggable({ distance: 50, stack: ".wrapper" });
});
</script>
</head>
<body>
{% for function,styled_function in zip(functions, styled_functions) %}
<div class="highlight wrapper syntax-box">
<span class="n"><pre>{{ function.header }}</pre></span>
{{ styled_function }}
</div>
{% end %}
</body>
</html>