forked from SpaceApi-archive/endpoint-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
executable file
·33 lines (25 loc) · 1009 Bytes
/
template.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
<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> #}
<body background="img/osaa_bg.jpg">
<h1>THE SPACE IS CURRENTLY</h1>
<a href="http://spaceapi.osaa.dk"><div id="button"></div></a>
<h2></h2>
{# used to be a {{ monster }} here #}
</body>
</html>