From 8ea8a456c7abe732ddfad994f337d0ba2ec7d424 Mon Sep 17 00:00:00 2001 From: lelo Date: Thu, 20 Mar 2025 18:20:32 +0000 Subject: [PATCH] rename file --- app.py | 2 +- templates/{browse.html => app.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{browse.html => app.html} (100%) diff --git a/app.py b/app.py index 31e8a98..d202dc1 100755 --- a/app.py +++ b/app.py @@ -539,7 +539,7 @@ def crawl_and_cache(start_relative_path): @app.route('/') @require_secret def index(path): - return render_template("browse.html") + return render_template("app.html") if __name__ == "__main__": app.run(debug=True, host='0.0.0.0') \ No newline at end of file diff --git a/templates/browse.html b/templates/app.html similarity index 100% rename from templates/browse.html rename to templates/app.html