18 lines
415 B
Python
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",
|
|
]
|