summaryrefslogtreecommitdiffhomepage
path: root/src/world/index.gsp
blob: 1e6c651c30921e118f4a80784cae53d7954832e8 (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
html lang="en" {
	head {
		__include(head.gsp)
		title {-World Coins & -Banknotes}
	}

	body {
		nav { __include(nav.gsp) }

		main {
			section {
				header {
					h1 {-World Coins and -Banknotes}
					h6 {-My secondary collection}
				}
			}

			section .cl-section .slant-up {
				div {
					h2 {-World Coins}

					table .country-table {
						tbody {
							tr {
							}
						}
					}
				}
			}

			section .cl-section .slant-up {
				div {
					h2 {-World Banknotes}

					p {-
						All these banknotes are uncirculated, unlike the rest of the content
						on this website.
					}

					table .country-table {
						tbody {
							tr {
								td {a href="notes/ez" {-Eurozone}}
							}
						}
					}
				}
			}

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