/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: elof.bigestans at gmail
  • Date: 2013-05-24 14:10:14 UTC
  • mfrom: (102 lenasys_b)
  • mto: This revision was merged to the branch mainline in revision 107.
  • Revision ID: elof.bigestans@gmail.com-20130524141014-8pni44bog1rf5ijp
MergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
    <div id="coursemenuWrapper">
5
5
        <div id="coursemenu">
6
6
            <div id="coursemenuHeader">
7
 
                DA330G
 
7
                <?php
 
8
                                        echo $activeCourse;
 
9
                                ?>
8
10
            </div>
9
11
            <div id="coursemenuContent">
10
 
                   <a href="#">JavaScript</a><br>
11
 
                   <a href="#">jQuery</a><br>
12
 
                   <a href="#">SVG Converter</a><br>
13
 
                   <a href="#">HTML5</a><br>
14
 
                   <a href="#">AJAX API</a><br>
15
 
                   <a href="#">API examples</a><br>
 
12
                                <?php   
 
13
                        //$categories
 
14
                        foreach ($categories as $categoryName){
 
15
                                echo "<a href='#'>".$categoryName->categoryName."</a>";
 
16
                        };
 
17
                ?>
16
18
            </div>
17
19
        </div>
18
 
    </div>
19
 
</div>
 
20
 
 
21