This commit is contained in:
Aevann1 2022-01-04 17:17:40 +02:00
parent 83bc8cf7e7
commit d424f1b9cc
2 changed files with 4 additions and 4 deletions

View file

@ -8,8 +8,8 @@ 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
if SITE_NAME == 'Drama': g.num_banners = len(listdir('files/assets/images/Drama/banners')) + 1
else: g.num_banners = None
@app.get("/post/")
def slash_post():
@ -207,7 +207,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, num_banners=num_banners, listing=posts, 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)