diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-29 23:24:17 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-29 23:24:17 +0100 |
commit | fe427d79968e26c4e4b9929282e6b38c613dd670 (patch) | |
tree | dd6dc288c5a41ac71bf4c2ef4a27184e78ed8828 /src/world/coins/br | |
parent | 75f1e778d5f98a582c6bf9945e73727e0cf29075 (diff) |
Add Brazilian olympic reais
Diffstat (limited to 'src/world/coins/br')
-rw-r--r-- | src/world/coins/br/index.gsp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/world/coins/br/index.gsp b/src/world/coins/br/index.gsp new file mode 100644 index 0000000..8d7f672 --- /dev/null +++ b/src/world/coins/br/index.gsp @@ -0,0 +1,47 @@ +html lang="en" { + head { + __include(head.gsp) + title {-Brazilian Coins} + } + + body { + nav { + __include(nav.gsp) + __include(world/nav.coins.gsp) + } + + main { + section { + header { + h1 {-Brazilian Coins} + } + } + + br{}br{} + + section { __include(table-key.gsp) } + + br{}br{} + + section .cl-section .slant-down { + div { + table .coin-table cellspacing="0" { + thead { + tr { + th colspan="7" {-R$1 Olympic Reais} + } + tr { + th colspan="1" {-Year} + th colspan="6" {-Topic} + } + } + + tbody { __esyscmd(gen-olympic-reais) } + } + } + } + + section { __include(foot.gsp) } + } + } +} |