31 lines
1018 B
Plaintext
31 lines
1018 B
Plaintext
table.table.is-bordered.is-striped.is-hoverable
|
|
tr
|
|
th.has-text-centered AI
|
|
th.has-text-centered Victories
|
|
th.has-text-centered Nulls
|
|
th.has-text-centered Defeats
|
|
th.has-text-centered Score
|
|
for ai in data.sortedAis
|
|
tr
|
|
td.has-text-centered
|
|
if ai.rank === 1
|
|
span.icon
|
|
i.fas.fa-trophy(style="color:#FFD700")
|
|
else if ai.rank === 2
|
|
span.icon
|
|
i.fas.fa-trophy(style="color:#C0C0C0")
|
|
else if ai.rank === 3
|
|
span.icon
|
|
i.fas.fa-trophy(style="color:#CD7F32")
|
|
strong= ai.name
|
|
td.has-text-centered= ai.victories
|
|
td.has-text-centered= ai.nulls
|
|
td.has-text-centered= ai.defeats
|
|
td.has-text-centered
|
|
strong= ai.score
|
|
.columns.is-centered
|
|
.column.is-narrow
|
|
caption
|
|
strong Leaderboard
|
|
|