Skip to content

Instantly share code, notes, and snippets.

@frankiejarrett
Created February 27, 2012 21:31
Show Gist options
  • Save frankiejarrett/1927236 to your computer and use it in GitHub Desktop.
Save frankiejarrett/1927236 to your computer and use it in GitHub Desktop.
List skills for Jamie
<?php if($skills): ?>
<h5>Skill<?php if( count($skills) > 1 ) { echo 's'; } ?></h5>
<ul>
<?php
foreach($skills as $skill) {
echo '<li>' . $skill->name . '</li>';
}
?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment