/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
52.1.1 by b11johgu
Added controllers for examplepage, templatelayout.
1
<!-- examplesMenu.php -->
2
	<div id="menuContainer">
28.2.3 by a10rolch
Added files:
3
		<div id="navigation">
4
			<ul>
5
					<li class="menuHeader">Quick links</li>
6
					<!-- Loads menu items from array -->
7
				<?php 
52.1.1 by b11johgu
Added controllers for examplepage, templatelayout.
8
				$counter=1;
64.1.1 by b11johgu
ExamplesController:
9
				$list = array_keys($titles);
52.1.1 by b11johgu
Added controllers for examplepage, templatelayout.
10
				foreach ($list as $item){
64.1.1 by b11johgu
ExamplesController:
11
					$counter++;
12
					if($counter % 2){
13
						echo '<li class="menuLink" data-name="'.$item.'">'.$item.'</li></a>';
14
					}
15
				}
16
				?>
17
			</ul>
28.2.3 by a10rolch
Added files:
18
		</div>
19
	</div>
20
	<div id="wrapper">
21
	
52.1.1 by b11johgu
Added controllers for examplepage, templatelayout.
22