/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
85.2.1 by a11emmjo
Combined bannermenu with startview to get correct start-page.
1
<!-- bannermenu.php -->
2
<div id="coursemenuBody">
3
    <div id="coursemenuWrapper">
4
        <div id="coursemenu">
5
            <div id="coursemenuHeader">
6
                <?php
85.1.8 by a11andoh
added the cms controller to load all content pages.
7
					echo $activeCourse;
8
				?>
9
            </div>
85.2.1 by a11emmjo
Combined bannermenu with startview to get correct start-page.
10
            <div id="coursemenuContent">
11
				<?php	
85.1.8 by a11andoh
added the cms controller to load all content pages.
12
			//$categories
13
			foreach ($categories as $categoryName){
14
				echo "<a href='#'>".$categoryName->categoryName."</a>";
15
			};
16
		?>
17
            </div>
85.2.1 by a11emmjo
Combined bannermenu with startview to get correct start-page.
18
        </div>
19
85.1.8 by a11andoh
added the cms controller to load all content pages.
20
21