Files
ani-cli-web/web_templates.py
T
2026-05-15 23:56:11 +02:00

18 lines
415 B
Python

#!/usr/bin/env python3
"""Aggregated template exports for ani-cli-web."""
from config_page import CONFIG_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",
"WATCHLIST_HTML",
"render_page_links",
"render_sidebar_brand",
]