/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
				$list = array_keys($titles);
9
				foreach ($list as $item):?>
10
	<li class="menuLink" data-name="<?php echo $item;?>"><?php echo $item;?></li></a>
11
				<?php endforeach;?>			
28.2.3 by a10rolch
Added files:
12
			</ul>
13
		</div>
14
	</div>
15
	<div id="wrapper">
16
	
52.1.1 by b11johgu
Added controllers for examplepage, templatelayout.
17