<!doctype html>
<html>
<head>
	<title>Leagues</title>
<!-- CSS are placed here -->
        <?php echo HTML::style('css/bootstrap.css'); ?>
        <?php echo HTML::style('css/bootstrap-responsive.css'); ?>
	<?php echo $__env->make('header', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
	<!-- Scripts are placed here -->
        <?php echo HTML::script('js/jquery-1.11.0.min.js'); ?>
        <?php echo HTML::script('js/bootstrap.min.js'); ?>
	<?php foreach ($leagues as $league): ?> 
	<a href="/leagues/<?php echo $league->id; ?>"><?php echo $league->name; ?></a><br>
	<?php endforeach; ?> 
	
</div>
</div>
</body>
</html>

