blob: 792f9a8764c78d4583ba66e27ad0025bbfa121b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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) }
}
}
}
|