summaryrefslogtreecommitdiffhomepage
path: root/src/euro/index.tnotes.gsp
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-10-29 22:39:48 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-10-29 22:39:48 +0100
commit9cad508b5c98ca1029460807249cafb712f28f1e (patch)
tree2ad62d1ca57b7dc691550865cb7fb0b55c26da34 /src/euro/index.tnotes.gsp
parentc88b4c2d0842dfbb32fa744dde781601b9e4e7cf (diff)
Migrate the site to GSP and a Makefile
Diffstat (limited to 'src/euro/index.tnotes.gsp')
-rw-r--r--src/euro/index.tnotes.gsp59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/euro/index.tnotes.gsp b/src/euro/index.tnotes.gsp
new file mode 100644
index 0000000..22aaae3
--- /dev/null
+++ b/src/euro/index.tnotes.gsp
@@ -0,0 +1,59 @@
+__hijack(euro/tn)
+
+html lang="en" {
+ head {
+ __include(head.gsp)
+ title {-Euro Test Banknotes}
+ }
+
+ body {
+ nav {
+ __include(nav.gsp)
+ __include(euro/nav.dnotes.gsp)
+ }
+
+ main {
+ section {
+ header {
+ h1 {-Euro Test Banknotes}
+ }
+ }
+
+ br{}br{}
+
+ section { __include(table-key.gsp) }
+
+ br{}br{}
+
+ section .blurb {
+ p {-
+ The following ‘test banknotes’ were banknotes from the Europa series
+ printed to test their usage in ATMs and such. The ‘*’ character in
+ the below serial numbers represents an arbitrary number/letter.
+ }
+ }
+
+ br{}
+
+ section .cl-section .slant-down {
+ div {
+ table #test-banknote-table .coin-table cellspacing="0" {
+ thead {
+ tr {
+ th colspan="7" {-Test Banknotes}
+ }
+ tr {
+ th colspan="1" {-Denomination}
+ th colspan="6" {-Serial Number / Printer Code / Signature}
+ }
+ }
+
+ tbody { __esyscmd(gen-tnotes) }
+ }
+ }
+ }
+
+ section { __include(foot.gsp) }
+ }
+ }
+}