Skip to content

Instantly share code, notes, and snippets.

@allgood2386
Last active August 29, 2015 13:56
Show Gist options
  • Save allgood2386/9232353 to your computer and use it in GitHub Desktop.
Save allgood2386/9232353 to your computer and use it in GitHub Desktop.
<?php
$date=strtotime($entity->field_event_date['und'][0]['value']);
print '<div class="event-date-styled">';
print '<span class="event-date-styled-day">'.format_date($date,'day').'</span>';
print '<span class="event-date-styled-inner-wrapper">';
print '<div class="event-date-styled-month">'.format_date($date,'month').'</div>';
print '<div class="event-date-styled-year">'.format_date($date,'year').'</div>';
print '</span></div>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment