content = html`
${articles.map(article => html`<section class="section content">
<small>${toDate(article.creationDate)}</small>
<h2><a href=${article.target}>${article.title}</a></h2>
${span(article.content)}
<hr class="hr"/>
</section>`)}
`