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) }
		}
	}
}