def templates_minimal_index_html( head_tag: str, static_path: str, index_py: str, index_html: str, init_py: str ) -> str: return f"""\ {head_tag}
quart-imp logo

Quart-Imp

This template page is located in {index_html}
with its route defined in {index_py}

It's being imported by app.import_app_resources() in the {init_py} file.

""" def templates_error_html() -> str: return """\ {{ error_code }}

{{ error_code }}

{{ error_message }}

"""