% layout("/layouts/base.eta", { title: it.name ? `${it.name} (${it.login})` : it.login }) %>
<% if (it.avatarUrl) { %>

<% } %>
<%= it.name || it.login %>
<%= it.login %><%= it.type === "organization" ? " (organization)" : "" %>
<% if (it.location) { %>
<%= it.location %>
<% } %>
<% if (it.nav.length > 0) { %>
<% } %>
<% if (it.bio || it.links.length > 0 || it.followers || it.company) { %>
<% if (it.bio) { %>
<%= it.bio %>
<% } %>
<% for (const link of it.links) { %>
<% } %>
<% if (it.followers) { %>

<%= it.followers %> followers<%= it.following ? ` ยท ${it.following} following` : "" %>
<% } %>
<% if (it.company) { %>
<%= it.company %>
<% } %>
<% } %>
<% if (it.pinned.length > 0) { %>
Pinned
<% for (const repo of it.pinned) { %>
<%~ include("./_ownerRepo", { repo, login: it.login }) %>
<% } %>
<% } %>
<% if (it.repos.length > 0) { %>
Repositories
<% for (const repo of it.repos) { %>
<%~ include("./_ownerRepo", { repo, login: it.login }) %>
<% } %>
<% } %>