@section('page_title') OSAA - Programs @stop @section('page_sub_title') OSAA State Championship Programs @stop @section('scripts') @parent @stop @section('jquery_init') /* * Log program click event as a digital program download */ $('[data-event-category]').click(function(event) { var element = $(this); logGoogleEvent(element); return true; }); function logGoogleEvent(element) { var category = element.attr('data-event-category'); var action = element.attr('data-event-action'); var label = element.attr('data-event-label'); ga('send', 'event', category, action, label); } $('.archive_button') .button() .css({'font-size' : '9pt'}); @stop @section('page_functions') Program Archive @stop @section('main_content') @foreach ($info['programs'] as $program) @if (!is_null($program->link)) @else @endif
{{ $program->title }}
@if (!is_null($program->location))
{{ $program->location }}
@endif
Updated {{ date('n/j/Y', strtotime($program->published_at)) }}
@endforeach @if (count($info['programs']) < 1)
Coming Soon
Digital programs will become available as the championship event comes closer.
@endif @stop