distrib/page_template.py
2017-03-10 17:49:02 +01:00

21 lines
420 B
Python

#!/usr/bin/env python
# -*- coding: UTF-8 -*-
html_head = """
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style>
.image{max-width: 100%;}
div{width: 640px;float:left;}
.dir::before{content:"📁";font-size:18px;}
</style>
</head>
<body>
"""
html_footer="""
</body>
</html>
"""