Skip to content

Instantly share code, notes, and snippets.

@lira92
Created February 24, 2017 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lira92/785b351edfb838acb1d6d9d454511884 to your computer and use it in GitHub Desktop.
Save lira92/785b351edfb838acb1d6d9d454511884 to your computer and use it in GitHub Desktop.
<?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">&#59249;</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