Advertisement
ijontichy

style.py

Oct 10th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.38 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import os, sys
  4. import cgi, cgitb
  5. cgitb.enable()
  6.  
  7. from http import cookie
  8.  
  9. DEFAULT = "ijontichy"
  10.  
  11. linkStringIE = """\
  12. <!--[if IE]>
  13. <link rel="stylesheet" href="/{0}-ie.css">
  14. <![endif]--> """
  15.  
  16. linkString = """\
  17. <link rel="stylesheet" href="/{0}.css"> """
  18.  
  19. print("Content-type: text/html\n")
  20.  
  21. print(linkString.format(DEFAULT))
  22. print(linkStringIE.format(DEFAULT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement