/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
80.1.1 by a11andoh
Startview constructed and completed.
1
<!-- start_view.php -->
82.2.1 by a11andoh
changes to include database fetching of courses added.
2
<div id="wrapperstartview">
3
	<div id="topdivstartview">
4
		<div id="logotransparantstartviewdiv"></div>
5
		<div id="topdivtextstartview">
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
6
			Learning platform where students can<br/>
7
			view and edit examples and do quizzes<br/>
8
			created by their teachers.
82.2.1 by a11andoh
changes to include database fetching of courses added.
9
		</div>
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
10
		<div id="topdivfsbs">Created by students for students.</div>
80.1.1 by a11andoh
Startview constructed and completed.
11
	</div>
82.2.1 by a11andoh
changes to include database fetching of courses added.
12
	<div id="botdivstartview">
90.1.2 by a11emmjo
Made a standard css-file to be used for the whole lenasys-page.
13
		<div id="botheaderstartview">Courses in LenaSYS</div>
82.2.1 by a11andoh
changes to include database fetching of courses added.
14
    	<div id="coursestarviewlinks">
15
		<?php	
16
			//$courses
17
			foreach ($courses as $courseName){
18
				echo "<a href='#'>".$courseName->name."</a>";
19
			};
20
		?>
21
        </div>
80.1.1 by a11andoh
Startview constructed and completed.
22
	</div>
23
</div>
82.2.1 by a11andoh
changes to include database fetching of courses added.
24