<!doctype html>
<html>
<head>
	<title>Profile page</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(); ?>
</head>
<body>
	<!-- 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 ($teams as $team): ?> 
	<a href="/teams/<?php echo $team->id; ?>"><?php echo $team->screenname; ?></a><br>
	<?php endforeach; ?> 
	
</body>
</html>

