1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!-- start_view.php -->
<div id="wrapperstartview">
<div id="topdivstartview">
<div id="logotransparantstartviewdiv"></div>
<div id="topdivtextstartview">
<h2>Learning platformwhere students can
<br/>view and edit examples and do quizzes
<br/> created by their teachers.</h2>
</div>
<div id="topdivfsbs"><h2>Created by students for students.</h2></div>
</div>
<div id="botdivstartview">
<div id="botheaderstartview"><h3>Courses in LenaSYS</h3></div>
<div id="coursestarviewlinks">
<?php
//$courses
foreach ($courses as $courseName){
echo "<a href='#'>".$courseName->name."</a>";
};
?>
</div>
</div>
</div>
|