From 1987551aca0a273ea1ef2d9fab13059a6807478e Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 30 Jan 2026 21:09:05 +1100 Subject: [PATCH] feat: Add ownthedot.com --- server.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server.py b/server.py index 5374a87..9d6fc5c 100644 --- a/server.py +++ b/server.py @@ -403,6 +403,8 @@ def index(): if 'localhost' in request.host or '127.0.0.1' in request.host or DEV: hns_scripts = '' + if 'ownthedot.com' in request.host: + return render_template('ownthedot.html', year=year) tld = request.host.split('.')[-1] if tld not in tlds and 'localhost' not in tld: return render_template('index.html',year=year, handshake_scripts=hns_scripts)