diff options
-rwxr-xr-x | build | 4 | ||||
-rw-r--r-- | data/coins | 2 | ||||
-rw-r--r-- | server.go | 4 | ||||
-rw-r--r-- | src/en/euro/coins.template.html | 10 | ||||
-rw-r--r-- | src/en/euro/index.html | 7 | ||||
-rw-r--r-- | src/pt/euro/note-nav.html | 16 | ||||
-rw-r--r-- | src/pt/euro/notes.template.html | 9 |
7 files changed, 37 insertions, 15 deletions
@@ -7,8 +7,8 @@ require fsub gawk go pee sponge PATH="$PATH:scripts" -rm -rf out -mkdir out +rm -rf out/* +mkdir -p out cp -r src/* out compile_for_lang() { @@ -232,6 +232,8 @@ ES - - X X - - - - 2021 ES - - - - - - - - 2022 ES ? ? ? ? ? ? ? ? 2023 +FI / / / / / / / X 1999 1/3 +FI / / / / / / / X 1999 2/3 FI X - X X - X X X 1999 FI X - X X X X X X 2000 FI - - X - X X X X 2001 @@ -34,7 +34,7 @@ func router(w http.ResponseWriter, r *http.Request) { http.Error(w, "An error occured", http.StatusInternalServerError) return } else if err != nil { - lang = "en/" + lang = "en" } else { lang = cookie.Value } @@ -44,7 +44,7 @@ func router(w http.ResponseWriter, r *http.Request) { Name: "redirect", Path: "/", }) - http.Redirect(w, r, lang, http.StatusMovedPermanently) + http.Redirect(w, r, lang + "/", http.StatusMovedPermanently) return } diff --git a/src/en/euro/coins.template.html b/src/en/euro/coins.template.html index ae39ec5..8d917cc 100644 --- a/src/en/euro/coins.template.html +++ b/src/en/euro/coins.template.html @@ -38,6 +38,16 @@ </section> <br /> <!-- FI-DE --> + <!-- IF-FI --> + <!-- FI-FI --> + <section> + <p> + There is an error that exists for €2 coins minted in 1999 where the + holes in one, two, or even three of the 9’s are filled. The number of + 9’s filled is displayed with a fraction (e.g. 2/3 for two 9’s filled). + </p> + </section> + <br /> <!-- IF-GR --> <section> <p> diff --git a/src/en/euro/index.html b/src/en/euro/index.html index faa1cc6..d70bd8e 100644 --- a/src/en/euro/index.html +++ b/src/en/euro/index.html @@ -24,6 +24,13 @@ amassed. It’s also my primary collection as I reside in the Eurozone. I do own uncirculated-coins and -banknotes, but all coins and banknotes listed on this section of the site are circulated. + <br /><br /> + There are various examples of euro coins that have slight varieties + between their standard circulation releases and their coincard/set + releases, such as different mintmarks for example. In these cases, + the NIFC variety will <strong>not</strong> be listed on this site + <em>unless</em> I happen to get one for my collection (see <a + href=mt>Malta</a> for an example). The same applies to error coins. </p> </section> diff --git a/src/pt/euro/note-nav.html b/src/pt/euro/note-nav.html index c08af2a..d2d5a46 100644 --- a/src/pt/euro/note-nav.html +++ b/src/pt/euro/note-nav.html @@ -1,11 +1,11 @@ <!-- TODO --> <ul> - <li><a href=/XX/euro/5>€5</a></li> - <li><a href=/XX/euro/10>€10</a></li> - <li><a href=/XX/euro/20>€20</a></li> - <li><a href=/XX/euro/50>€50</a></li> - <li><a href=/XX/euro/100>€100</a></li> - <li><a href=/XX/euro/200>€200</a></li> - <li><a href=/XX/euro/500>€500</a></li> - <li><a href=/XX/euro/tn>Test Notes</a></li> + <li><a href=/XX/euro/5>5 €</a></li> + <li><a href=/XX/euro/10>10 €</a></li> + <li><a href=/XX/euro/20>20 €</a></li> + <li><a href=/XX/euro/50>50 €</a></li> + <li><a href=/XX/euro/100>100 €</a></li> + <li><a href=/XX/euro/200>200 €</a></li> + <li><a href=/XX/euro/500>500 €</a></li> + <li><a href=/XX/euro/tn>Notas de teste</a></li> </ul> diff --git a/src/pt/euro/notes.template.html b/src/pt/euro/notes.template.html index 7a78bb1..f219178 100644 --- a/src/pt/euro/notes.template.html +++ b/src/pt/euro/notes.template.html @@ -3,18 +3,21 @@ <html lang=XX> <head> <meta charset=UTF-8 /> - <title>€<!-- DENOM --> Banknotes</title> + <title><!-- DENOM --> € notas</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> + <nav> + <!-- NAV-BAR --> + <!-- NOTE-NAV --> + </nav> <main> <section> <header> - <h1>€<!-- DENOM --> Banknotes</h1> + <h1><!-- DENOM --> € notas</h1> </header> </section> |