import html page: str = ''' Files

Files

''' index: str = f''' {page}
Uploading…
''' def download(href: str, filename: str, expires: str) -> str: return f''' {page}
{html.escape(filename)}
Expires: {html.escape(expires)}
''' not_found: str = f''' {page} Sorry, the file you are looking for can not be found. It may have already expired. '''