Skip to content

Instantly share code, notes, and snippets.

@zanematthew
Created June 16, 2012 15:52
Show Gist options
  • Save zanematthew/2941754 to your computer and use it in GitHub Desktop.
Save zanematthew/2941754 to your computer and use it in GitHub Desktop.
Code from the home page view
<?php if ( $event ) : ?>
<h1><a href="<?= $event['link']; ?>"><?= $event['title']; ?></a></h1>
<p class="date-time"><time class="post-time"><?= $event['date']; ?></time></p>
<div style="float: left;">
<ul class="inline" style="margin: 10px 0 0;">
<li style="margin-top: -12px; float: left;"><?php load_template( VIEWS_DIR . 'shared/facebook-button.html.php' ); ?></li>
<li><?php load_template( VIEWS_DIR . 'shared/twitter-like-button.html.php' ); ?></li>
</ul>
</div>
<?php else : ?>
No Event Message?
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment