Source: site.view [edit]
Function name: personProfile
Arguments: person
Description: Format person profile
Page type: html
Render function:  
Module: skillsrank

Page source:

<webl>     WubCall("skillsrank.incHeader", []);      </webl>
<webl>     WubCall("skillsrank.incTop", ["play"]);         </webl>



<!-- content here 
============================================================ -->
<a name="content"></a>

<webl>
 var res = "<h1>Profile: " + person["name"] + "</h1>\n";
 var pic = person["picture-url"] ? "";
 if (pic == "") then
    pic = "http://www.talkingpointsmemo.com/assets_c/2009/12/AnonymousHead-cropped-proto-custom_5.jpg";
 end;
 res = res + `<img src="` + pic + `"/><p>`;
 res = res + "Headline: " + person.headline + "<p>\n";
 res = res + "Summary: " + person.summary + "<p>\n";
 res = res + "Education Score: " + person.eduScore + "<p>\n";
 res = res + "School Score: " + person.schoolScore + "<p>\n";
 res = res + `<a target="_blank" href="` + person["site-standard-profile-request"] + `">LinkedIn Profile` +
                      `</a><p>`;


res;

</webl>


</div>

<webl>     WubCall("skillsrank.incBottom", []);      </webl>
<webl>     WubCall("skillsrank.incSidemenuNavSite", ["play"]);    </webl>
<webl>     WubCall("skillsrank.incFooter", []);      </webl>