`;
}
export function articleListHtml(articles: Article[]) {
if (articles.length === 0) return "";
let html = "";
for (const article of articles) {
html += articleListItemHtml(article);
}
return `
Articles
${html}
`;
}
export function profilePageHtml(profile: Profile, articles: Article[]) {
const title = `${profile.name} on Nostr`;
const body = `