diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-05-24 01:16:29 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-05-24 01:16:29 +0200 |
commit | 4e7535fd73d232a51629fc33f65a61754a155b22 (patch) | |
tree | acce114d59f1679d8f08a4c96ed180b8027c632a /src/pt/euro/coins.template.html |
Genesis commit
Diffstat (limited to 'src/pt/euro/coins.template.html')
-rw-r--r-- | src/pt/euro/coins.template.html | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/src/pt/euro/coins.template.html b/src/pt/euro/coins.template.html new file mode 100644 index 0000000..5708f69 --- /dev/null +++ b/src/pt/euro/coins.template.html @@ -0,0 +1,111 @@ +<!DOCTYPE html> +<!-- TODO --> +<html lang=XX> + <head> + <meta charset=UTF-8 /> + <title><!-- DEMON --> Euro Coins</title> + <link rel="shortcut icon" type="image/svg" href="/favicon.svg" /> + <link rel="stylesheet" type="text/css" href="/style.css" /> + </head> + + <body> + <nav><!-- NAV-BAR --></nav> + + <main> + <section> + <header> + <h1><!-- DEMON --> Euro Coins</h1> + </header> + </section> + + <br /><br /> + + <section><!-- TABLE-KEY --></section> + + <br /><br /> + + <!-- IF-DE --> + <section> + <p> + Germany has 5 different mints that each mint coins. These mints are + located in Berlin (A), Munich (D), Stuttgart (F), Karlsruhe (G), and + Hamburg (J). All German euro-coins contain a letter (the “mintmark”) + identifying which mint the coin was minted at. This means that there + are 5 versions of every German euro-coin that must be collected. + </p> + </section> + <br /> + <!-- FI-DE --> + <!-- IF-GR --> + <section> + <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. + </p> + </section> + <br /> + <!-- FI-GR --> + <!-- IF-LU --> + <section> + <p> + For certain commemorative releases Luxembourg minted two different + varieties — “classic” and a “holographic”. Any years listed on this + page suffixed with ‘C’ are of the classic variety while any years + suffixed with ‘H’ are of the holographic variety. + </p> + </section> + <br /> + <!-- FI-LU --> + + <section class="cl-section slant-down"> + <div> + <table class=coin-table cellspacing=0> + <thead> + <tr> + <th colspan=8>Standard Issues</th> + </tr> + <tr> + <th>1 Cent</th> + <th>2 Cent</th> + <th>5 Cent</th> + <th>10 Cent</th> + <th>20 Cent</th> + <th>50 Cent</th> + <th>1 Euro</th> + <th>2 Euro</th> + </tr> + </thead> + <tbody> + <!-- SCOIN-TABLE-BODY --> + </tbody> + </table> + </div> + </section> + + <!-- IF-!HR --> + <section class="cl-section slant-down"> + <div> + <table class="coin-table commemorative-table" cellspacing=0> + <thead> + <tr> + <th colspan=7>Commemorative Issues</th> + </tr> + <tr> + <th>Year</th> + <th colspan=6>Commemorated Topics</th> + </tr> + </thead> + <tbody> + <!-- CCOIN-TABLE-BODY --> + </tbody> + </table> + </div> + </section> + <!-- FI-!HR --> + + <section><!-- FOOTER --></section> + </main> + </body> +</html> |