<!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>
<div id="modal-graph" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="width: 100vw">
        <div class="modal-dialog modal-sm">
                <div class="modal-body" id="modal_body">
		</div>
	</div>
</div>
	<!-- Scripts are placed here -->
        <?php echo HTML::script('js/jquery-1.11.0.min.js'); ?>
        <?php echo HTML::script('js/bootstrap.min.js'); ?>
	<?php echo HTML::script('js/modal.js'); ?>
	<?php echo HTML::script('js/highcharts.js'); ?>
	
	<table class="table table-condensed">
	<?php foreach ($players as $player): ?>
	<?php echo $__env->make('playerrow', $player, array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> 
	<?php endforeach; ?> 
	</table>

</body>
</html>

