distribusi-verse/distribusi/templates/page_template.py

17 lines
399 B
Python
Raw Normal View History

2024-12-21 12:35:00 +01:00
html_head = """\
2024-12-04 10:34:07 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Generated with distribusi https://git.vvvvvvaria.org/crunk/distribusi -->
<meta name="generator" content="distribusi" />
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="{cssfile}" crossorigin="anonymous">
</head>
<body>
2024-12-21 12:35:00 +01:00
"""
2024-12-04 10:34:07 +01:00
2024-12-21 12:35:00 +01:00
html_footer = """\
2024-12-04 10:34:07 +01:00
</body>
</html>
2024-12-21 12:35:00 +01:00
"""