forked from looma/Looma-II
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlooma-editor-template.php
More file actions
73 lines (58 loc) · 2.23 KB
/
looma-editor-template.php
File metadata and controls
73 lines (58 loc) · 2.23 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html>
<?php $page_title = 'Looma - Lesson editor template';
include ('includes/header.php');
include ('includes/mongo-connect.php');
if (!loggedin()) header('Location: looma-login.php');
?>
<head>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/looma-editor-template.css">
</head>
<body>
<div id = "main-container-horizontal">
<div id="headerDiv">
<div id="navbar">
<img id="logo" src="images/LoomaLogo.png">
<div id="titleString">
</div>
</div>
<div id="querybar">
<form id="search" name="search">
<input type="hidden" name="collection" value="activities" id="collection"/>
<input type="hidden" name="cmd" value="search" id="cmd" />
</form>
</div>
</div>
<div id="container">
<div id="titleDiv"></div>
<div id="outerResultsDiv">
<div id="innerResultsMenu">
</div>
<div id="innerResultsDiv">
<span class="hint">Search Results</span>
</div>
</div>
<div id= "previewpanel">
<span class="hint">Preview Area</span>
</div>
<div id = "timeline">
<div class="timelineEntire" id="timelineDisplay">
<span class="hint">Timeline</span>
</div>
</div>
</div>
</div>
<?php include ('includes/js-includes.php');
?>
<script src="js/jquery-ui.min.js"> </script>
<script src="js/jquery.hotkeys.js"> </script>
<script src="js/tether.min.js"> </script>
<script src="js/bootstrap.min.js"> </script>
<?php include ('includes/looma-filecommands.php');
include ('includes/looma-search.php');
?>
<script src="js/looma-media-controls.js"></script>
<script src="js/looma-editor-template.js"></script>
</body>
</html>