html`<h3>Current Hacker News homepage</h3>
<ul>
${content
.map(
(item) => `
<li>
<h3>
<a href="https://news.ycombinator.com/item?id=${
item.objectID
}" target="_blank">
${item.title}
</a>
</h3>
<p>ID: ${item.objectID} | Points: ${item.points}</p>
<p><a href="${item.url}">${item.url}</a></p>
<p>Created: ${new Date(
item.created_at
).toLocaleString()} | Updated: ${new Date(
item.updated_at
).toLocaleString()}</p>
<p>
<a href="https://hn.algolia.com/?dateRange=all&page=0&prefix=false&query=story%3A${
item.objectID
}&sort=byDate&type=comment" target="_blank">
Search ${item.num_comments} comments by most recent first
</a> / <a href="https://news.ycombinator.com/latest?id=${
item.objectID
}">latest</a>
</p>
</li>
`
)
.join("")}
</ul>
`