distribusi/page_template.py

24 lines
573 B
Python
Raw Normal View History

2017-03-10 17:49:02 +01:00
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
html_head = """
<!DOCTYPE html>
<html lang="en">
<head>
2018-02-10 19:21:54 +01:00
<!-- Generated with distribusi https://git.vvvvvvaria.org/rra/distribusi -->
2017-03-10 17:49:02 +01:00
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style>
.image{max-width: 100%;}
.pdf {width:100%;}
div{width: 640px;float:left;padding:1em;}
video {width:640px;}
2017-03-10 17:49:02 +01:00
.dir::before{content:"📁";font-size:18px;}
</style>
</head>
<body>
"""
html_footer="""
</body>
</html>
"""