diff --git a/assets/mana/B.svg b/assets/mana/B.svg new file mode 100644 index 0000000..2e8b71b --- /dev/null +++ b/assets/mana/B.svg @@ -0,0 +1 @@ + diff --git a/assets/mana/G.svg b/assets/mana/G.svg new file mode 100644 index 0000000..618094a --- /dev/null +++ b/assets/mana/G.svg @@ -0,0 +1 @@ + diff --git a/assets/mana/R.svg b/assets/mana/R.svg new file mode 100644 index 0000000..c330b01 --- /dev/null +++ b/assets/mana/R.svg @@ -0,0 +1 @@ + diff --git a/assets/mana/U.svg b/assets/mana/U.svg new file mode 100644 index 0000000..e693d70 --- /dev/null +++ b/assets/mana/U.svg @@ -0,0 +1 @@ + diff --git a/assets/mana/W.svg b/assets/mana/W.svg new file mode 100644 index 0000000..0ca88a5 --- /dev/null +++ b/assets/mana/W.svg @@ -0,0 +1 @@ + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..8593a30 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +services: + temp-site: + image: nginx:alpine + restart: unless-stopped + ports: + - "80:80" + volumes: + - ./index.html:/usr/share/nginx/html/index.html:ro + - ./assets:/usr/share/nginx/html/assets:ro + - ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro + diff --git a/index.html b/index.html new file mode 100644 index 0000000..0c6b025 --- /dev/null +++ b/index.html @@ -0,0 +1,221 @@ + + + + + +Under Construction + + + + + +
+
+
+
+
+ +
+ White Mana + Blue Mana + Black Mana + Red Mana + Green Mana +
+ +
+
+ This spell has yet to resolve +
+ +

+ Magic is being woven into reality +

+ +
+ A new gathering place for every + Planeswalker + is currently coalescing between the planes. + Please stand by while the mana settles. +
+
+ + + diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..8032c56 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,16 @@ +server { + listen 80; + server_name _; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ =404; + } + + location /assets/ { + expires 30d; + add_header Cache-Control "public"; + } +}