covid19/tmpl/world.pug
2020-04-28 17:58:53 -07:00

16 lines
271 B
Plaintext

extends ./master.pug
block main
h2 All Countries
+heroChart
mixin renderItemName(item)
a.d-inline-block.text-truncate(
href="./countries/" + item.safeName + ".html"
style="max-width: 125px"
)= item.name
+dataTable(data.countries, 'Country', 'country')