diff --git a/files/helpers/const.py b/files/helpers/const.py index 162b0924a..cc88827a3 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -744,4 +744,6 @@ NOTIFIED_USERS = { 'dong': DONGER_ID, 'dong': FARTBINN_ID, 'kippy': KIPPY_ID, -} \ No newline at end of file +} + +num_banners = len(listdir('files/assets/images/Drama/banners')) + 1 \ No newline at end of file diff --git a/files/routes/front.py b/files/routes/front.py index a348d429f..b564311e1 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -1,16 +1,11 @@ from files.helpers.wrappers import * from files.helpers.get import * - from files.__main__ import app, cache from files.classes.submission import Submission -from os import listdir defaulttimefilter = environ.get("DEFAULT_TIME_FILTER", "all").strip() SITE_NAME = environ.get("SITE_NAME", "").strip() -if SITE_NAME == 'Drama': num_banners = len(listdir('files/assets/images/Drama/banners')) + 1 -else: num_banners = None - @app.get("/post/") def slash_post(): return redirect("/") @@ -207,7 +202,7 @@ def front_all(v): if request.headers.get("Authorization"): return {"data": [x.json for x in posts], "next_exists": next_exists} if not v or v.oldsite: template = '' else: template = 'CHRISTMAS/' - return render_template(f"{template}home.html", v=v, listing=posts, num_banners=num_banners, next_exists=next_exists, sort=sort, t=t, page=page) + return render_template(f"{template}home.html", v=v, listing=posts, next_exists=next_exists, sort=sort, t=t, page=page)