mostraorhe = function (arr, tipo) {
let html = `<div class='listagemgrande duascolunas-pessoas'>`;
for (let i = 0; i < arr.length; i++) {
if (arr[i].vinculo == tipo) {
html += `<div class='fotomediapessoa' style='background-image: url(${arr[i].fotourl});'></div><div class='biofull'><p class='nome_pessoa'>${arr[i].nomecomtitulo}</p><p>${arr[i].biocompleta}</p>`;
if (typeof arr[i + 1] != "undefined") {
html += `<a name='${arr[i + 1].chavepessoas}'></a>`;
}
html += `</div>`;
if (typeof arr[i].interesses != "undefined" && arr[i].interesses != "") {
let keysw = arr[i].interesses.split(",");
html += "<div class='tagskeywords'><b>Interesses</b>";
for (let kw = 0; kw < keysw.length; kw++) {
html += `<p><div class='pessoa_interesses'>${keysw[kw]}</div></p>`;
}
html += "</div>";
} else {
html += "<div></div>";
}
}
}
html += `</div>`;
return html;
}