Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
12 lines (11 sloc) 538 Bytes
module.exports = (render, model) => render`
<h1> ${model.id} </h1>
<p>...joined <strong> ${model.ago} </strong>, and has <strong> ${model.karma} </strong> karma</p>
<p>
<a href="${'https://news.ycombinator.com/submitted?id=' + model.id}"> submissions </a> /
<a href="${'https://news.ycombinator.com/threads?id=' + model.id}"> comments </a> /
<a href="${'https://news.ycombinator.com/favorites?id=' + model.id}"> favourites </a>
</p>
<div class="${'about' + (model.about ? '' : ' hidden')}">
<p>${[model.about || '']}</p>
</div>`;