Created
February 24, 2017 23:31
-
-
Save lira92/785b351edfb838acb1d6d9d454511884 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if($nextEvent != null): ?> | |
<div class="black-panel"> | |
<h3><?= $nextEvent->name; ?></h3> | |
<span><?= $nextEvent->date->i18nFormat('d MMMM y'); ?></span> | |
<div class="countdown"> | |
<div class="countdown-timer"> | |
<span class="info-text"><span class="text-icon"></span><?= __("Countdown Till Start"); ?></span> | |
<h4 class="countdown-text" rel="<?= strtotime($nextEvent->date->format('Y-m-d H:i')); ?>"></h4> | |
</div> | |
<p><?= $nextEvent->description; ?></p> | |
<?= $this->Html->link(__("View Event Page"), | |
['controller' => 'Races', 'action' => 'details', $nextEvent->id], | |
['class' => 'panel-big-button-black']); ?> | |
</div> | |
</div> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment