-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtemplate.html
More file actions
32 lines (23 loc) · 873 Bytes
/
template.html
File metadata and controls
32 lines (23 loc) · 873 Bytes
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
<html>
<head>
{# define a baseurl so that the endpoint scripts work with a 'top-level' document root or in a subdirectory #}
{# If the base tag makes trouble at some point, read http://stackoverflow.com/questions/1889076/is-it-recommended-to-use-the-base-html-tag #}
<base href="{{ baseurl }}"><!--[if lte IE 6]></base><![endif]-->
<link rel="stylesheet" type="text/css" href="css/spaceapi.css">
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/spaceapi.js"></script>
<script>
$(document).ready(function(){
// uncomment one of both in order to use either the
// monster or a simple button to display the status
$("#svg4534").fadeIn();
//$("#button").fadeIn();
});
</script>
</head>
<body>
<h2></h2>
<div id="button"></div>
{{ monster }}
</body>
</html>