This commit is contained in:
SG
2025-06-11 13:48:08 +03:00
parent f9c14b3e2a
commit eeb1462210
4 changed files with 49 additions and 10 deletions

View File

@@ -5,4 +5,5 @@ from config import Config
env = Environment(loader=FileSystemLoader(Config.TEMPLATES_DIR))
env.globals['header_image'] = Config.HEADER_IMAGE
index_template = env.get_template("index.html")
content_item_template = env.get_template("content_item.html")
content_item_template = env.get_template("content_item.html")
categories_index_template = env.get_template("categories_index.html")