Created
June 16, 2012 15:52
-
-
Save zanematthew/2941754 to your computer and use it in GitHub Desktop.
Code from the home page view
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 ( $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