diff --git a/docs/index.html b/docs/index.html
index e2ea97fd3..e6fb20d17 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -9,12 +9,12 @@
Paris 2024 Summer Olympic Games calendars
By sport
By team
diff --git a/index.js b/index.js
index 97c4fbb18..eb7f1ad90 100644
--- a/index.js
+++ b/index.js
@@ -159,7 +159,7 @@ const main = async () => {
const template = fs.readFileSync(`${__dirname}/template.html`, 'utf-8');
const output = template
- .replace('{{sports}}', sports.map(sport => `- ${sport}
`).join('\n'))
+ .replace('{{sports}}', sports.map(sport => `- ${getSportIcon(sport)} ${sport}
`).join('\n'))
.replace('{{teams}}', Object.keys(teams).sort().filter(team => !team.startsWith("Winner")).map(team => `- ${countryNameAndFlag(team, true)}
`).join('\n'))
fs.writeFileSync('docs/index.html', output);