<?php $__env->startSection('page_title'); ?>
    OSAA - Participation Records
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page_sub_title'); ?>    
    OSAA Member School Participation Records
<?php $__env->stopSection(); ?>

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

    <style type="text/css">
        
    	



    </style>

<?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 if (count($info['records']) > 0): ?>

        <?php foreach ($info['records'] as $year_index => $records): ?>

            <h1><?php echo $year_index; ?></h1>
            
            <div class="columns">                            

            <?php foreach ($records as $title => $record): ?>

                <?php if (count($records) == 2): ?>
                    <div class="half">
                <?php elseif (count($records) == 3): ?>
                    <div class="third">
                <?php else: ?>
                    <div>
                <?php endif; ?>

                    <h2><?php echo $title; ?></h2>

                    <a href="<?php echo $record->url; ?>" target="_blank"><?php echo $record->text; ?></a>

                </div>

            <?php endforeach; ?>
            
            </div>

            <br class="clear" /><br />
            

        <?php endforeach; ?>

    <?php else: ?>
        There are no records to display.
    <?php endif; ?>  

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