From 9cad508b5c98ca1029460807249cafb712f28f1e Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 29 Oct 2023 22:39:48 +0100 Subject: Migrate the site to GSP and a Makefile --- src/euro/index.dnotes.gsp | 82 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/euro/index.dnotes.gsp (limited to 'src/euro/index.dnotes.gsp') diff --git a/src/euro/index.dnotes.gsp b/src/euro/index.dnotes.gsp new file mode 100644 index 0000000..792f9a8 --- /dev/null +++ b/src/euro/index.dnotes.gsp @@ -0,0 +1,82 @@ +__hijack(euro/__denom) +m4_define([__denom], m4_patsubst(__denom, [e$], [])) + +html lang="en" { + head { + __include(head.gsp) + title {-€__denom Banknotes} + } + + body { + nav { + __include(nav.gsp) + __include(euro/nav.dnotes.gsp) + } + + main { + section { + header { + h1 {-€__denom Banknotes} + } + } + + br{}br{} + + section { __include(table-key.gsp) } + + br{}br{} + + section .blurb { + p {- + In the serial numbers of the banknotes found in the 2002 series, the + first letter represents the country that the banknote was issued by. + In the second series (the ‘Europa’ series) the first letter no longer + represents the issuing country but instead the location at which the + banknote was printed. + } + m4_ifelse(__denom, 5, [ + p {- + No €5 banknotes were printed for the 2002 series which bear the + signature of Mario Draghi. + } + ]) + m4_ifelse(__denom, 500, [ + p {- + The €500 banknote was discontinued and withdrawn from circulation + with the release of the Europa series. + } + ]) + } + + br{} + + section .cl-section .slant-down { + div { + table .coin-table .bnote-table cellspacing="0" { + thead { + tr {th colspan="12" {-2002 Series}} + } + + tbody { __esyscmd(gen-2002 __denom) } + } + } + } + + m4_ifelse(__denom, 500, [], [ + section .cl-section .slant-down { + div { + table .coin-table .bnote-table cellspacing="0" { + thead { + tr {th colspan="12" {-Europa Series}} + } + + tbody { __esyscmd(gen-europa __denom) } + } + } + } + ]) + + section { __include(foot.gsp) } + } + } +} -- cgit v1.2.3