File: helloworld.py

package info (click to toggle)
webassets 3%3A3.0.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,364 kB
  • sloc: python: 8,703; makefile: 92; sh: 3
file content (18 lines) | stat: -rw-r--r-- 303 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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>
''')