summaryrefslogtreecommitdiffhomepage
path: root/src/euro/index.dnotes.gsp
diff options
context:
space:
mode:
Diffstat (limited to 'src/euro/index.dnotes.gsp')
-rw-r--r--src/euro/index.dnotes.gsp82
1 files changed, 82 insertions, 0 deletions
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) }
+ }
+ }
+}