<?php $__env->startSection('page_title'); ?>
    OSAA - Full Member Schools
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
   OSAA Full Member Schools 
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    @parent


<?php $__env->stopSection(); ?>

<?php $__env->startSection('jquery_init'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_functions'); ?>
    
<?php $__env->stopSection(); ?>


<?php $__env->startSection('main_content'); ?>    		
	
	<?php
	    $letter = null;
	    $count = count($schools);	    	    
	    $i = 0;
	?>	

	<h1>A-Z Listing of <?php echo $count; ?> Member Schools</h1>	

	<div class="columns">
		<div class="fourth">

			<?php foreach ($schools as $school): ?>

				<?php				    				    				
				
				    $new_letter = strtoupper (substr($school->short_name, 0, 1));

				    if (!Helpers::strEqual($letter, $new_letter))
				    {
				    	$letter = $new_letter;
				    	
				    	if (Helpers::strEqual ($letter, array('G', 'N', 'S')))
				    	{
				    		echo '</div><div class="fourth">';
				    	}

				    	echo "<h2>- " . $letter . " -</h2>";
				    }
				    
				?>


				<a href="<?php echo url('/schools/' . $school->id); ?>"><?php echo $school->name; ?></a><br />

			<?php endforeach; ?>

		</div>
	</div>

	<br class="clear" />

<?php $__env->stopSection(); ?>