Files
ani-cli-web/web_templates.py
2026-05-22 23:17:00 +02:00

20 lines
467 B
Python

#!/usr/bin/env python3
"""Aggregated template exports for ani-cli-web."""
from config_page import CONFIG_HTML
from queue_page import QUEUE_HTML
from search_page import INDEX_HTML
from template_helpers import PAGE_LINKS, render_page_links, render_sidebar_brand
from watchlist_page import WATCHLIST_HTML
__all__ = [
"CONFIG_HTML",
"INDEX_HTML",
"PAGE_LINKS",
"QUEUE_HTML",
"WATCHLIST_HTML",
"render_page_links",
"render_sidebar_brand",
]