from pathlib import Path
html_base_path = Path(__file__).parent
def get_html(path: Path) -> str:
"""获取 HTML 模板。"""
with open(path, "r", encoding="utf-8") as f:
return f.read()
def get_logo() -> str:
"""获取 logo。"""
return get_html(html_base_path / "logo.html")
def get_github_logo() -> str:
"""获取 github logo。"""
return get_html(html_base_path / "github_logo.html")
def get_footer() -> str:
"""获取 footer。"""
return get_html(html_base_path / "footer.html")
def get_web_login_html() -> str:
"""获取 web login。"""
return get_html(html_base_path / "web_login.html")