/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
1
<!DOCTYPE html>
2
<html>
3
<head>
4
	<script src="<?php echo base_url();?>js/ace/ace.js" type="text/javascript" charset="utf-8"></script>
5
	<script src="<?php echo base_url();?>js/jquery-1.8.0.min.js" type="text/javascript" charset="utf-8"></script>
6
	<script src="<?php echo base_url();?>js/codeviewer.js" type="text/javascript" charset="utf-8"></script>
7
	<script src="<?php echo base_url();?>js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
8
	<link href="<?php echo base_url();?>css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
9
	<link href="<?php echo base_url();?>css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"/>
10
	<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>css/codeviewer.css">
11
12
</head>
13
<body>
14
	<div  id="header">
15
		<div class="container">
16
			<div class="row">
17
				<div class="span12" id="nav">
18
					<div class="row">
19
						<div class="separator"></div>
20
						<div class="btn-group">
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
21
							<a class="btn dropdown-toggle btn-inverse" href="#" onClick="dropdown()">
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
22
								Browse
23
								<span class="caret"></span>
24
							</a>
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
25
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
26
						</div>
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
27
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
28
						
29
						<div class="separator"></div>
30
						<div class="btn-group">
31
							<a class="btn btn-inverse">Left</a>
32
							<a class="btn btn-inverse">Right</a>
33
						</div>
34
						<div class="separator"></div>
35
						<div class="btn-group">
36
							<a class="btn btn-inverse">Run</a>
37
						</div>
38
						<div class="separator"></div>
39
					</div>
40
				</div>
41
			</div>
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
42
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
43
		</div>
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
44
		
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
45
	</div>
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
46
	<div id="dropdown">
47
			<section class="group">
48
				<div class="heading pink">
49
					<h1>Quizzes</h1>
50
				</div>
51
				<div class="content">
52
					<a href="#Quiz1">Quiz1</a>
53
					<a href="#Quiz2">Quiz2</a>
54
					<a href="#Quiz3">Quiz3</a>
55
				</div>
56
			</section>
57
			<section class="group">
58
				<div class="heading">
59
					<h1>Javascript examples</h1>
60
				</div>
61
				<div class="content">
62
					<section class="inner group">
63
						<div class="heading">
64
							<h1>A couple of short tutorials introducing firgebug</h1>
65
						</div>
66
						<div class="content"> 
67
							<a href="#Firebug-tutorial">Firebug tutorial</a>
68
							<a href="#Firebug-tutorial2">Firebug tutorial II</a>
69
						</div>
70
					</section>
71
					<section class="inner group">
72
						<div class="heading">
73
							<h1>Some simple JavaScript code examples</h1>
74
						</div>
75
						<div class="content">
76
							<a href="#Dom-tutorial">Changing the DOM</a>
77
						</div>
78
					</section>
79
				</div>
80
			</section>
81
			<section class="group">
82
				<div class="heading">
83
					<h1>Examples on jQuery and jQuery UI</h1>
84
85
				</div>
86
				<div class="content">
87
					<a href="#jQuery-selector">jQuery selectors</a>
88
					<a href="#jQueryUI-datepicker">Datepicker</a>
89
					<a href="#jQueryUI-draggable">Using draggable</a>
90
				</div>
91
			</section>
92
		</div>
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
93
	<div class="container">
94
		<div class="row">
95
			<div class="span4" id="doc">
96
				<?php
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
97
				echo $documentation;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
98
				?>
99
			</div>
100
			<div class="span8">
101
				<?php 
23.1.1 by galaxyAbstractor
Removed codeigniter user guide, shouldn't be in the repo
102
				echo $editors;
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
103
				?>
104
				
105
			</div>
106
		</div>
107
	</div>
108
109
</body>
110
111
</html>