1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<!doctype html>
<?php /*
Copyright (C) Högskolan i Skövde <his.se> 2013.
Copyright (C) Oscar Jonsson <c11oscjo@student.his.se> 2013.
Copyright (C) Simon Bergöö <a11simbe@student.his.se> 2013.
This file is part of LenaSYS
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/?>
<html>
<head>
<link href="<?php echo base_url()?>css/template_layout.css" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="<?php echo base_url()?>js/template_layout.js"></script>
</head>
<body>
<div id="menucolumn">
</div>
<div id="boxcolumn">
<?php
echo "<div id=\"mostUsed\">";
$i;
for($i = 1; $i <= 16; $i++){ //Add more numbers in the forloop to add more boxes, add more images with equal names to add more boxes with pictures
echo "<a href=\"".base_url()."layout/test/".$i."\" class=\"box\" style=\"background-image:url('".
base_url()."img/template_layout_img/".$i.".png') \"></a>";
if ($i == 5){
echo "</div>
<div id=\"lessUsed\" hidden=\"hidden\">";
}
}
/*
* This for-loop ads the last empty boxes to fill out the row (just for the look, according to the mockup)
*/
$i-=1;
if($i % 10 != 0){
for($m = 5 - $i % 5; $m >= 1; $m--){
echo "<div class=\"box2\"></div>";
}
}
?>
</div>
<div id="buttonContainer">
<a href="#" id="hideButton" class="showhide" hidden="hidden" onclick="hide()">Hide</a>
<a href="#" id="showButton" class="showhide" onclick="show()">Show</a>
</div>
</div>
</body>
</html>
|