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}
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.
{{ error_message }}
"""