From 9cad508b5c98ca1029460807249cafb712f28f1e Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sun, 29 Oct 2023 22:39:48 +0100 Subject: Migrate the site to GSP and a Makefile --- src/euro/index.ccoins.gsp | 181 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 src/euro/index.ccoins.gsp (limited to 'src/euro/index.ccoins.gsp') diff --git a/src/euro/index.ccoins.gsp b/src/euro/index.ccoins.gsp new file mode 100644 index 0000000..15e8c5a --- /dev/null +++ b/src/euro/index.ccoins.gsp @@ -0,0 +1,181 @@ +__hijack(euro/__code) + +html lang="en" { + head { + __include(head.gsp) + title {-__demonym Euro Coins} + } + + body { + nav { + __include(nav.gsp) + __include(euro/nav.ccoins.gsp) + } + + main { + section { + header { + h1 {-__demonym Euro Coins} + } + } + + br{}br{} + + section { __include(table-key.gsp) } + + br{}br{} + + __ifcode([de], [ + section .blurb { + p {- + All German coins bear one of five different mintmarks that + represent the city in which they were minted. These are: Berlin + (A), Munich (D), Stuttgart (F), Karlsruhe (G), and Hamburg (J). + } + } + ]) + + __ifcode([gr], [ + section .blurb { + p {- + As a result of a late joining to the Eurozone, Greece was assisted + by the countries of France, Spain, and Finland to mint coins for + 2002. For this reason all 2002 coins have two varieties — one with + a mintmark in the star (‘F’, ‘E’, and ‘S’) and one without. + } + } + ]) + + __ifcode([lu], [ + section .blurb { + p {- + For the years 2020–2021 Luxembourg released certain commemorative + coins in both a ‘classic’ and ‘photo’ variety. Any years labeled + with ‘P’ are of the ‘photo’ variety while years without a label are + of the standard ‘classic’ variety. + } + + p {- + Additionally, in 2023 the 10c, 20c, and €2 denominations were + released in two varieties. One bearing the mintmark of the Monnaie + de Paris (Paris Mint) and one bearing the mintmark of the + Koninklijke Nederlandse Munt (Royal Dutch Mint). These varieties + are suffixed with ‘MdP’ and ‘KNM’ respectively. + } + } + ]) + + __ifcode([mc], [ + section .blurb { + p {- + In 2007 Monaco released two varieties of their €1 coin. One of + them has mintmarks around the year while the other one doesn’t. + The variety without the mintmarks is suffixed with ‘No MM’. + } + } + ]) + + __ifcode([mt], [ + section .blurb { + p {- + Many Maltese commemoratives have different mintmarks depending on + if they were intended for circulation, coincards, or sets. Any + years listed on this page suffixed with ‘MM’ bear an NIFC mintmark, + while any years suffixed with ‘F’ bear the ‘F’ in the star that also + represents an NIFC coin. + } + } + ]) + + __ifcode([nl], [ + section .blurb { + p {- + Besides just the standard €2 commemorative releases, the Koninklijke + Nederlandse Munt (Royal Dutch Mint) also sells NIFC €5 + commemorative coins; these coins are suffixed with ‘€5’. + } + } + ]) + + section .cl-section .slant-down { + div { + table .coin-table cellspacing="0" { + thead { + tr { + th colspan="8" {-Standard Issues} + } + tr .mobile { + th {-1c} + th {-2c} + th {-5c} + th {-10c} + th {-20c} + th {-50c} + th {-€1} + th {-€2} + } + tr .not-mobile { + th {-1 Cent} + th {-2 Cent} + th {-5 Cent} + th {-10 Cent} + th {-20 Cent} + th {-50 Cent} + th {-1 Euro} + th {-2 Euro} + } + } + + tbody { __esyscmd(gen-scoin __code) } + } + } + } + + section .cl-section .slant-down { + div { + table .coin-table .commemorative-table cellspacing="0" { + thead { + tr { + th colspan="7" {-Commemorative Issues} + } + tr { + th {-Year} + th colspan="6" {-Commemorated Topics} + } + } + + tbody { __esyscmd(gen-ccoin __code) } + } + } + } + + __ifcode([fi], [ + section .cl-section .slant-down { + div { + table + .coin-table + .commemorative-table + .error-table + cellspacing="0" + { + thead { + tr { + th colspan="7" {-Error Coins} + } + tr { + th {-Year} + th {-Denomination} + th colspan="5" {-Description} + } + } + + tbody { __esyscmd(gen-ecoin __code) } + } + } + } + ]) + + section { __include(foot.gsp) } + } + } +} -- cgit v1.2.3