showTeam = team => html`
<article style="padding-bottom: 5em">
<header><h2>${team.name} ${palette(team.colorsJersey, 40)}</h2>
<a href="https://www.letour.fr${team.relativeTeamUrl}">
<img style='height: 50px' src="${baseUrl}images/logo-team-${team.code}.png" />
</a>
</header>
<div style='display: flex; flex-direction: row; flex-wrap: wrap;'>
${ridersByTeam.get(team.code).map(showRider)}
</div>
</article>`