<!DOCTYPE html>
<html lang="en">

    <!-- HTML Head -->
    <head>

        <!-- Page Title -->
        <title>
            <?php echo $__env->yieldContent('page_title'); ?>
        </title>      

        <!-- Meta Tage -->          
        <?php $__env->startSection('meta_tags'); ?>
            <meta charset="utf-8" />
            <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <meta name="description" content="Oregon School Activities Association">
            <meta name="viewport" content="width=device-width">
        <?php echo $__env->yieldSection(); ?>

        <?php echo $__env->make ('layouts.jquery_theme', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

        <!-- Stylesheets -->
        <link rel="stylesheet" type="text/css" href="<?php echo asset('css/default.css'); ?>">

        <!-- Inpage Styles -->
        <?php echo $__env->yieldContent('style'); ?>
        
        <!-- JQuery -->
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>       
        <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>        

        <!-- JavaScripts -->
        <?php echo $__env->yieldContent('scripts'); ?>

        <!-- JQuery Page Initialization -->
        <script type="text/javascript"> 
            $(document).ready(function()
            {
                <?php echo $__env->yieldContent('jquery_init'); ?>
            });
        </script>   
    </head>

    <body>

        <?php echo $__env->yieldContent('body'); ?>

    </body>    

</html>