1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
from __future__ import print_function
from __future__ import print_function
from __future__ import print_function
from __future__ import print_function
from __future__ import print_function
# Import assets configuration
from assets import bundle
print('Content-Type: text/html')
print('')
print('''
<html>
<head>''')
for url in bundle.urls():
print('<link rel="stylesheet" type="text/css" href="%s" />' % url)
print('''
</head>
<body>
Hello World!
</body>
</html>
''')
|