summaryrefslogtreecommitdiffhomepage
path: root/src/index.gsp
blob: 166aab34b19e2cf1a5991191a81172009913a3af (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
html lang="en" {
	head {
		__include(head.gsp)
		title {-Thomas’ Euro Collection}
	}

	body {
		nav { __include(nav.gsp) }

		main {
			section {
				header {
					h1 {-My Euro Collection}
					h6 {-…and some world stuff too!}
				}
			}

			section {
				p {-
					This website houses the entirety of my circulated euro-coin and
					-banknote collection.  It also has some non-euro currencies too!
					Unless explicitly stated otherwise, all coins and banknotes listed on
					this site should be circulated.  In other words, they shouldn’t’ve
					just come from a coin set I purchased from a coin mint.  I think it’s
					just a lot cooler knowing that a piece of money was previously used
					in a real-world transaction.
				}
			}

			section .c-section .slant-up {
				a href="/euro" {
					h2 {-Euro Coins and -Banknotes}
					p {-
						The main focus of my currency collecting with a single currency
						that spans 26 countries and almost 350 million people.  Standard
						issues, commemorative issues, and banknotes from all series are all
						included.
					}
					img src="/eu-stars.svg" {}
				}
			}

			section .c-section .slant-up {
				a href="/world" {
					h2 {-World Coins and -Banknotes}
					p {-
						Money from around the world!  This collection gets progressively
						larger over time, but is not my primary focus.  There are a few
						countries in which I take special interest though.
					}
					img src="/globe.svg" {}
				}
			}

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