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

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

        <!-- Page Title -->
        <title>
            Bracket
        </title>      
        
        <!-- Stylesheets -->
        <link rel="stylesheet" type="text/css" href="<?php echo asset('css/bracket.css'); ?>" media="screen,print">         

        <!-- Google Analytics -->
        <script src="<?php echo asset('scripts/analyticstracking.js'); ?>" type="text/javascript"></script> 
                
    </head>

    <body>                                                        
        <?php /*  Bracket Container  */ ?>
        <div class="bracket" style="width: 1020px; height: 1300px; padding: 0 5px; position: relative; overflow: hidden;">

            <?php /*  Bracket Title (event->name)  */ ?>
            <div style="text-align: center; font-weight: bold; font-size: 16pt; margin: 0.5em 0 0.25em 0;">
                <?php echo $information['bracket']->event->name; ?>
            </div>                

            <?php echo $__env->make ('brackets.' . str_replace('-', '_', $information['bracket']->template) . '_print', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

            <?php if (Helpers::strEqual($information['bracket']->bracket->activity, array('FBL', 'VBL', 'BSC', 'GSC', 'BBX', 'GBX', 'BBL', 'SBL'))): ?>
                <?php /*  Bracket Footer  */ ?>
                <div style="width: 1020px; position: absolute; bottom: 0em;">
                    <div style="text-align: center; line-height: 2em;">
                        The bottom team in the matchup is the home team.
                    </div>
                </div>
            <?php endif; ?>
        </div>          

    </body>    
</html>