From 724b0766cb2955bc392d0a910a54db5ff4029b33 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sun, 28 Sep 2025 20:32:32 -0400 Subject: [PATCH] add initial Caddyfile, docker-compose.yml, and HTML files for math flashcards; set up basic structure and styles --- margotwood/Caddyfile | 5 + margotwood/docker-compose.yml | 16 + margotwood/flashcards/addition.html | 430 ++++++++++++++++++++++ margotwood/flashcards/subtraction.html | 431 +++++++++++++++++++++++ margotwood/index.html | 208 +++++++++++ margotwood/style.css | 0 miningwood/technical-analysis/index.html | 14 + 7 files changed, 1104 insertions(+) create mode 100644 margotwood/Caddyfile create mode 100644 margotwood/docker-compose.yml create mode 100644 margotwood/flashcards/addition.html create mode 100644 margotwood/flashcards/subtraction.html create mode 100644 margotwood/index.html create mode 100644 margotwood/style.css create mode 100644 miningwood/technical-analysis/index.html diff --git a/margotwood/Caddyfile b/margotwood/Caddyfile new file mode 100644 index 0000000..90497c6 --- /dev/null +++ b/margotwood/Caddyfile @@ -0,0 +1,5 @@ +:80 { + root * /usr/share/caddy + encode gzip + file_server +} diff --git a/margotwood/docker-compose.yml b/margotwood/docker-compose.yml new file mode 100644 index 0000000..175766f --- /dev/null +++ b/margotwood/docker-compose.yml @@ -0,0 +1,16 @@ +services: + caddy: + image: caddy:2-alpine + restart: unless-stopped + ports: + - 8083:80 + - 8243:443 + volumes: + - ./Caddyfile:/etc/caddy/Caddyfile + - ./:/usr/share/caddy + - caddy_data:/data + - caddy_config:/config +volumes: + caddy_data: null + caddy_config: null +networks: {} diff --git a/margotwood/flashcards/addition.html b/margotwood/flashcards/addition.html new file mode 100644 index 0000000..1d0ee43 --- /dev/null +++ b/margotwood/flashcards/addition.html @@ -0,0 +1,430 @@ + + + + + + + Toddler Math Flash Cards - Addition Fun! + + + + + +
+
Score: 0/0
+

🎓 Addition Practice

+ +
+
5 + 3 = ?
+
+ +
+ + +
+ + + + + + + + + + + + +
+
+ + + +
+ + +
+
+ + + + + \ No newline at end of file diff --git a/margotwood/flashcards/subtraction.html b/margotwood/flashcards/subtraction.html new file mode 100644 index 0000000..2030f08 --- /dev/null +++ b/margotwood/flashcards/subtraction.html @@ -0,0 +1,431 @@ + + + + + + + Toddler Math Flash Cards - Subtraction Fun! + + + + + +
+
Score: 0/0
+

🎓 Subtraction Practice

+ +
+
5 + 3 = ?
+
+ +
+ + +
+ + + + + + + + + + + + +
+
+ + + +
+ + +
+
+ + + + + \ No newline at end of file diff --git a/margotwood/index.html b/margotwood/index.html new file mode 100644 index 0000000..67d3d25 --- /dev/null +++ b/margotwood/index.html @@ -0,0 +1,208 @@ + + + + + + + Learning Fun for Toddlers! + + + + + +
+

🎓 Learning Time! 🎓

+

Tap to start learning math!

+ + +
+ +
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/margotwood/style.css b/margotwood/style.css new file mode 100644 index 0000000..e69de29 diff --git a/miningwood/technical-analysis/index.html b/miningwood/technical-analysis/index.html new file mode 100644 index 0000000..9e216fb --- /dev/null +++ b/miningwood/technical-analysis/index.html @@ -0,0 +1,14 @@ + + + + + + + Document + + + + + + + \ No newline at end of file