Skip to content

Instantly share code, notes, and snippets.

@aaronmoodie
Created August 25, 2011 08:26
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 aaronmoodie/1170228 to your computer and use it in GitHub Desktop.
Save aaronmoodie/1170228 to your computer and use it in GitHub Desktop.
<?php
$clients = 'Whoop!';
$stats = 'Poop!';
if ( $clients || $stats ) {
echo '<h2 class="title"><span>The Results</span></h2>';
if ( $clients ) echo '<div class="clients left">' .$clients. '</div>';
if ( $stats ) echo '<div class="stats left">' .$stats. '</div>';
} else {
echo '<!-- no content -->';
}?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment