/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">
6
			<h2>Learning platformwhere students can 
7
			<br/>view and edit examples and do quizzes
8
			<br/> created by their teachers.</h2>
9
		</div>
10
		<div id="topdivfsbs"><h2>Created by students for students.</h2></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">
13
		<div id="botheaderstartview"><h3>Courses in LenaSYS</h3></div>
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