Plan Personal de Retiro (PPR)
Conoce que es un Plan Personal de Retiro, sus ventajas y beneficios, descarga el documento adjunto y responde todas las preguntas que vengan a tu mente, toma decisiones asertivas y comienza hoy a planear tu etapa de retiro.
Descarga aquí tu guía de PPR
\
\
';
return CardHtml;
}
jQuery(document).ready(function() {
jQuery("#sidebar-articles").html("");
var tipo = jQuery("#supahida").val();
var nid = jQuery("#supanid").val();
getArticles( nid, tipo,
function(data){
console.log(data.data);
jQuery.each( data.data, function( i, key ){
var html = getCardHtml(key);
// console.log(key.nodeurl + window.location.hostname);
if (key.nodeurl != window.location.pathname && i <= 1) {
jQuery("#sidebar-articles").append(html);
}
});
},function(data){ console.log(data); } );
});