<?php

/**
@todo : style it with css classes and utilize $translate (if needed)
 * Example
 * <?= $this->partial('partials/_noflash.phtml', 
 *     array('translate' => $translate) ?>
 */

?>
<div id="content">
    <div class="instruction-section">
        <div class="message-title clearfix">
            <h3><?=$this->translate('We have detected that your browser does not have <br /> Adobe Flash enabled.')?></h3>
            <h4><?=$this->translate('Workstation requires Adobe Flash in order to allow you to upload and stream audio assets.')?></h4>
        </div>
        <div class="message-body">
            <div class="row">
                <div class="col-xs-4 section">
                    <div class="browserImg">
                        <img src="/images/chrome-logo.png" />
                    </div>
                    <div class="instructions">
                        <p><?=$this->translate('You can find instructions for enabling <br /> Flash on Chrome here:')?></p>
                        <a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-chrome.html" target="_blank">
                            <?=$this->translate('https://helpx.adobe.com/flash-player/kb/enabling-flash-player-chrome.html')?>
                        </a>
                    </div>
                </div>
                <div class="col-xs-4 section">
                    <div class="browserImg">
                        <img src="/images/firefox-logo.png" />
                    </div>
                    <div class="instructions">
                        <p><?=$this->translate('You can find instructions for enabling <br /> Flash on Firefox here:')?></p>
                        <a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-firefox.html" target="_blank">
                            <?=$this->translate('https://helpx.adobe.com/flash-player/kb/enabling-flash-player-firefox.html')?>
                        </a>
                    </div>
                </div>
                <div class="col-xs-4 section">
                    <div class="browserImg">
                        <img src="/images/safari-logo.png" />
                    </div>
                    <div class="instructions">
                        <p><?=$this->translate('You can find instructions for enabling <br /> Flash on Safari here:')?></p>
                        <a href="https://helpx.adobe.com/flash-player/kb/enabling-flash-player-safari.html" target="_blank">
                            <?=$this->translate('https://helpx.adobe.com/flash-player/kb/enabling-flash-player-safari.html')?>
                        </a>
                    </div>
                </div>
            </div>
        </div>
        <div class="message-footer">
            <p>
                <?=$this->translate('The Orchard is working on an update to Workstation that will no longer require the use of <br /> Adobe Flash which will be released this year.')?>            	
            </p>
        </div>
    </div>
</div>
