blob: 7591e7fb7d69888aaf95f960457bf551545fc38b (
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
|
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 {
td {a href="coins/br" {-Brazil}}
td {a href="coins/us" {-United States of America}}
}
}
}
}
}
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) }
}
}
}
|