Skip to content

Instantly share code, notes, and snippets.

@fjarrett
Created February 27, 2012 21:31
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 fjarrett/1927236 to your computer and use it in GitHub Desktop.
Save fjarrett/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