forked from varia/distribusi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
420 B
21 lines
420 B
8 years ago
|
#!/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>
|
||
|
"""
|