summaryrefslogtreecommitdiffhomepage
path: root/src/world/notes/ez/index.gsp
blob: c62db8c10e2dc463ab13c49fe677b6925907134e (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
html lang="en" {
	head {
		__include(head.gsp)
		title {-Eurozone Banknotes}
	}

	body {
		nav {
			__include(nav.gsp)
			__include(world/nav.notes.gsp)
		}

		main {
			section {
				header {
					h1 {-Eurozone Banknotes}
				}
			}

			br{}br{}

			section { __include(table-key.gsp) }

			br{}br{}

			section .blurb {
				p {-
					Unlike the Eurozone banknotes listed under the Euro section of this
					site, these are all UNC banknotes as opposed to circulated ones.
				}
			}

			section .cl-section .slant-down {
				div {
					table .coin-table .bnote-table cellspacing="0" {
						thead {
							tr {th colspan="12" {-2002 Series}}
						}

						tbody { __esyscmd(gen-notes-ez 2002) }
					}
				}
			}

			section .cl-section .slant-down {
				div {
					table .coin-table .bnote-table cellspacing="0" {
						thead {
							tr {th colspan="12" {-Europa Series}}
						}

						tbody { __esyscmd(gen-notes-ez Europa) }
					}
				}
			}

			section { __include(foot.gsp) }
		}
	}
}