linkedin-user-page-educations.tpl.php in LinkedIn Integration 7
Same filename and directory in other branches
File
linkedin_profile/linkedin-user-page-educations.tpl.phpView source
<?php
/**
* @file
* Template file for LinkedIn "Educations" items as displayed on user page
* Copy it to your theme's folder if you want to override it.
*
* Be sure to check and comply to http://developer.linkedin.com/docs/DOC-1091 before tweaking.
*/
$educations == $variables['educations'];
?>
<div class="linkedin-educations">
<ul>
<?php
foreach ($educations as $education) {
?>
<li><?php
print $education;
?></li>
<?php
}
?>
</ul>
</div>