-
Notifications
You must be signed in to change notification settings - Fork 1
/
resources.html
43 lines (30 loc) · 1.21 KB
/
resources.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
40
41
42
43
<!DOCTYPE html>
<html lang="de">
<head class="html5">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="Expires" content="-1">
<title>Field Trip - Resource Manager</title>
<!-- FrameTrail -->
<link rel="stylesheet" type="text/css" href="FrameTrail.min.css">
<script type="text/javascript" src="FrameTrail.min.js"></script>
<!-- Custom CSS in /_data/ -->
<link rel="stylesheet" type="text/css" href="_data/custom.css">
<script type="text/javascript">
$(document).ready( function() {
window.myInstance = FrameTrail.init({
target: 'body',
resources: [{
label: "Choose Resources",
data: "_data/resources/_index.json",
type: "frametrail"
}],
config: null,
users: {}
}, 'ResourceManagerLauncher');
});
</script>
</head>
<body>
</body>
</html>