/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/coursemenu.php

  • Committer: a11andoh
  • Date: 2013-05-27 11:25:41 UTC
  • mfrom: (105 lenasys_b)
  • mto: This revision was merged to the branch mainline in revision 106.
  • Revision ID: a11andoh@student.his.se-20130527112541-gut7vg5nu8mxvgmn
blurp

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
<!-- bannermenu.php -->
3
 
<div id="coursemenuBody">
4
 
    <div id="coursemenuWrapper">
5
 
        <div id="coursemenu">
6
 
            <div id="coursemenuHeader">
7
 
                <?php
8
 
                                        echo $activeCourse;
9
 
                                ?>
10
 
            </div>
11
 
            <div id="coursemenuContent">
12
 
                                <?php   
13
 
                        //$categories
14
 
                        foreach ($categories as $categoryName){
15
 
                                echo "<a href='#'>".$categoryName->categoryName."</a>";
16
 
                        };
17
 
                ?>
18
 
            </div>
19
 
        </div>
20
 
 
21