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

  • Committer: a11andoh
  • Date: 2013-05-24 11:28:43 UTC
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: a11andoh@student.his.se-20130524112843-360je7hu7q13r171
added the cms controller to load all content pages.
added first time registration controller to load the views for the registration
pages.
added and fixed temporarypages for the controllers 
and edited the models to be able to get active courses.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
You should have received a copy of the GNU Lesser General Public License
18
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
19
*/?>
20
 
<!--
21
 
template_layout.css
22
 
template_layout.js
23
 
-->
24
 
<div class="cmsContent">
25
 
        <div id="boxcolumn" >
 
20
<html>
 
21
<head>
 
22
<link href="<?php echo base_url()?>css/template_layout.css" rel="stylesheet" type="text/css">
 
23
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
 
24
<script src="<?php echo base_url()?>js/template_layout.js"></script>
 
25
</head>
 
26
<body>
 
27
        <div id="menucolumn">
 
28
        </div>
 
29
        <div id="boxcolumn">
26
30
        <?php
27
31
                
28
32
                echo "<div id=\"mostUsed\">";
41
45
                */
42
46
                $i-=1;
43
47
                if($i % 10 != 0){
44
 
                        for($m = 5 - $i % 5; $m >= 1; $m--){
45
 
                                echo "<div class=\"box2\" style=\"background-image:url('".
46
 
                                base_url()."img/template_layout_img/0.png' ) \"></div>";
47
 
                        }
 
48
                for($m = 5 - $i % 5; $m >= 1; $m--){
 
49
                        echo "<div class=\"box2\"></div>";
 
50
 
 
51
                }
48
52
                }
49
53
                                
50
54
        ?>      
51
55
        </div>
52
56
                <div id="buttonContainer">
 
57
                        <a href="#" id="hideButton" class="showhide" hidden="hidden" onclick="hide()">Hide</a>
53
58
                        <a href="#" id="showButton" class="showhide"  onclick="show()">Show</a>
54
59
                </div>
55
60
        </div>
56
 
</div>
 
 
b'\\ No newline at end of file'
 
61
</body>
 
62
</html>
 
 
b'\\ No newline at end of file'