diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..74b449e
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,28 @@
+FROM nginx:stable
+
+RUN apt-get update && apt-get install -y \
+ pandoc \
+ --no-install-recommends && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists/*
+
+RUN mkdir -p /app/markdown
+
+COPY *.md /app/markdown
+COPY *.md /usr/share/nginx/html
+COPY template.html /app/markdown
+
+COPY default.conf /etc/nginx/conf.d
+
+RUN for md_file in /app/markdown/*.md; do \
+ if [ -f "$md_file" ]; then \
+ filename=$(basename -- "$md_file"); \
+ name="${filename%.*}"; \
+ echo "Converting $filename to $name.html"; \
+ pandoc "$md_file" -o "/usr/share/nginx/html/$name.html" \
+ --template=/app/markdown/template.html \
+ --standalone; \
+ fi; \
+done
+
+EXPOSE 80
\ No newline at end of file
diff --git a/app-nginx.conf.sigil b/app-nginx.conf.sigil
deleted file mode 100644
index 71bacff..0000000
--- a/app-nginx.conf.sigil
+++ /dev/null
@@ -1,38 +0,0 @@
-worker_processes 1;
-error_log stderr;
-pid nginx.pid;
-daemon off;
-
-events {
- worker_connections 768;
-}
-
-http {
- types_hash_max_size 2048;
- include mime.types;
- charset UTF-8;
- server {
- listen {{ $.PORT }};
- server_name _;
- {{ if ne $.NGINX_ROOT "" }}
- root /app/www/{{ $.NGINX_ROOT }};
- {{ else }}
- root /app/www;
- {{ end }}
- index index.html;
- port_in_redirect off;
-
- location /now {
- try_files /now.html =404;
- }
-
- location / {
- {{ if ne $.NGINX_DEFAULT_REQUEST "" }}
- try_files $uri $uri/ /{{ $.NGINX_DEFAULT_REQUEST }};
- {{ else }}
- try_files $uri $uri/ =404;
- {{ end }}
- }
-
- }
-}
diff --git a/default.conf b/default.conf
new file mode 100644
index 0000000..40d1583
--- /dev/null
+++ b/default.conf
@@ -0,0 +1,16 @@
+server {
+ listen 80;
+ listen [::]:80;
+ server_name localhost;
+
+ location / {
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ try_files $uri $uri.html $uri/ =404;
+ }
+
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+}
\ No newline at end of file
diff --git a/index.html b/index.html
deleted file mode 100644
index 09d4f1b..0000000
--- a/index.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- thermokar.st
-
-
-
-
-
-
- senior software engineer at
- klaviyo.
-
-
- profiles
-
- properties
-
-
-
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..115d42c
--- /dev/null
+++ b/index.md
@@ -0,0 +1,26 @@
+# [thermokar.st](/)
+
+senior software engineer at [**klaviyo**](https://www.klaviyo.com/)
+
+## [now](/now) | [resume][resume] | [curriculum vitae][cv]
+
+## profiles
+
+- [https://github.com/thermokarst](https://github.com/thermokarst)
+- [https://git.sr.ht/~thermokarst](https://git.sr.ht/~thermokarst) (squatting)
+- [https://github.com/matthew-eb](https://github.com/matthew-eb) (inactive, job-specific)
+- [https://github.com/matthew-kv](https://github.com/matthew-kv) (job-specific)
+- [https://gitlab.com/thermokarst](https://gitlab.com/thermokarst) (mostly inactive)
+- [https://thermokarst.itch.io/](https://thermokarst.itch.io/)
+
+## properties
+
+- [https://thermokar.st](https://thermokar.st)
+ - [gemini://devlog.thermokar.st](gemini://devlog.thermokar.st) ([http proxy](https://portal.mozz.us/gemini/devlog.thermokar.st))
+ - [https://gpx.thermokar.st](https://gpx.thermokar.st)
+ - [https://zettel.thermokar.st](https://zettel.thermokar.st)
+- [http://www.akdillon.net](http://www.akdillon.net)
+ - [http://akindices.akdillon.net](http://akindices.akdillon.net)
+
+[resume]: https://docs.google.com/document/d/e/2PACX-1vR44-lKPVikU7PjGKjO3vBlTXeTgULeowFSF75pHHjPPvwfKeNfU2M8YXsmURWCJGIyb2Chgst-5n7T/pub
+[cv]: https://docs.google.com/document/d/e/2PACX-1vSSAGQWRA5yENXD6BwuTDY1EAMEMws4RcxfkW6wa8Y3jddS4d0C3go4-0mJO-94FHi1X_zRg8w-Cplp/pub
\ No newline at end of file
diff --git a/now.html b/now.html
deleted file mode 100644
index c4b1bf0..0000000
--- a/now.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- thermokar.st
-
-
-
-
-
-
- now
-
-
-
-
gaming
-
- - Another Crab's Treasure (Switch)
- - Elden Ring (PC)
-
-
-
-
music
-
- - Sleep Token - Sundowning
- - Sleep Token - This Place Will Become Your Tomb
- - Sleep Token - Take Me Back To Eden
-
-
-
-
diff --git a/now.md b/now.md
new file mode 100644
index 0000000..6c2db3a
--- /dev/null
+++ b/now.md
@@ -0,0 +1,17 @@
+# [thermokar.st](/)
+
+## now
+
+### reading
+
+- The Terror
+
+### gaming
+
+- Elden Ring (PC)
+
+### music
+
+- Sleep Token - Sundowning
+- Sleep Token - This Place Will Become Your Tomb
+- Sleep Token - Take Me Back To Eden
diff --git a/template.html b/template.html
new file mode 100644
index 0000000..b5fe862
--- /dev/null
+++ b/template.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+ thermokar.st
+
+
+
+
+ $body$
+
+
+
+