Moved data files into static and dynamic

This commit is contained in:
Lucas
2025-10-16 13:57:14 -07:00
parent 4e56301dfb
commit 0beb55ffed
15 changed files with 21 additions and 21 deletions

View File

@@ -2,7 +2,7 @@ import json
# Generates mainheader with dynamic project count
def generate_mainheader():
with open("source/data/applications.json", "r", encoding="utf-8") as f:
with open("source/data/dynamic/applications.json", "r", encoding="utf-8") as f:
data = json.load(f)
project_count = len(data.get("applications", []))