<% var btns = []; btns.push({ key: 'followers', desc: 'followers', tab: 'followers' }); btns.push({ key: 'following', desc: 'following', tab: 'following' }); btns.push({ key: 'public_repos', desc: 'repos', tab: 'repositories' }); function layoutDiv() { var el = ''; if (item.username == undefined || item.username.length == 0) { return el; } 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 += ''; // menu if (item.menu) { el += partial('../menu', {where: 'sidebar'}); } el += '
'; el += '
'; return el; } %> <%- layoutDiv() %>