<% var btns = []; btns.push({ key: 'followers', desc: 'followers', href: 'https://github.com/xaoxuu?tab=followers' }); btns.push({ key: 'following', desc: 'following', href: 'https://github.com/xaoxuu?tab=following' }); btns.push({ key: 'public_repos', desc: 'repos', href: 'https://github.com/xaoxuu?tab=repositories' }); function layoutDiv() { var el = ''; if (item.username == undefined || item.username.length == 0) { return el; } el += '
'; // header if (item.header && item.header.length > 0) { el += '
'; el += '' + item.header + ''; el += '
'; } // body el += '
'; if (item.avatar) { el += '
'; } // username el += '

 

'; el += '

 

'; el += '
'; btns.forEach((btn, i) => { el += ''; el += '0'; el += '' + btn.desc + ''; el += ''; }); el += '
'; // follow el += ''; el += '
'; el += '
'; return el; } %> <%- layoutDiv() %>