From e4f8b03ae311b9f9e0f76946d7901c70871fe14b Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Wed, 24 Apr 2024 11:51:06 +0200 Subject: [PATCH] feat: prep for deploy --- templates/{index.html => threads.html} | 0 threads.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{index.html => threads.html} (100%) diff --git a/templates/index.html b/templates/threads.html similarity index 100% rename from templates/index.html rename to templates/threads.html diff --git a/threads.py b/threads.py index ae5ca9c..ef2d837 100755 --- a/threads.py +++ b/threads.py @@ -10,7 +10,7 @@ thread_ids = ['112319729193615365', '112294405672971916', '112258065967208438'] @threads.route('/') def home(): threads = fetch_threads(); - return render_template('index.html', threads=threads) + return render_template('threads.html', threads=threads) @threads.route('/api') def api():