summaryrefslogtreecommitdiffhomepage
path: root/src/world/index.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/world/index.gsp
parentc88b4c2d0842dfbb32fa744dde781601b9e4e7cf (diff)
Migrate the site to GSP and a Makefile
Diffstat (limited to 'src/world/index.gsp')
-rw-r--r--src/world/index.gsp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/world/index.gsp b/src/world/index.gsp
new file mode 100644
index 0000000..1e6c651
--- /dev/null
+++ b/src/world/index.gsp
@@ -0,0 +1,53 @@
+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 {
+ }
+ }
+ }
+ }
+ }
+
+ 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) }
+ }
+ }
+}