/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/codeviewer/codeviewer.php

  • Committer: a11emmjo
  • Date: 2013-05-16 13:50:44 UTC
  • mto: This revision was merged to the branch mainline in revision 78.
  • Revision ID: a11emmjo@student.his.se-20130516135044-c19du1qlslilvewr
Added a new header/topmenu/bannermenu from now on called bannermenu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
        <div class="container">
 
2
                <div class="row">
 
3
                        <div class="span4" id="doc">
 
4
                                <?php 
 
5
                                        foreach($editors as $editor) {
 
6
                                                if($editor[0] == 1) {
 
7
                                                        echo $editor[1];
 
8
                                                }
 
9
                                        }
 
10
                                ?>
 
11
 
 
12
                        </div>
 
13
                        <div class="span8">
 
14
                                <?php 
 
15
                                        foreach($editors as $editor) {
 
16
                                                if($editor[0] == 2) {
 
17
                                                        echo $editor[1];
 
18
                                                }
 
19
                                        }
 
20
                                ?>
 
21
                        </div>
 
22
                </div>
 
23
        </div>
 
24
 
 
25
</body>
 
26
 
 
27
</html>