/templates/base.html

http://django-jchat.googlecode.com/ · HTML · 46 lines · 44 code · 2 blank · 0 comment · 0 complexity · 58d0fa99dab820c02a88958d5772e96c MD5 · raw file

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html lang="en"><head>
  3. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  4. <meta name="robots" content="NONE,NOARCHIVE"><title>Welcome to Django-jChat</title>
  5. <style type="text/css">
  6. html * { padding:0; margin:0; }
  7. body * { padding:10px 20px; }
  8. body * * { padding:0; }
  9. body { font:small sans-serif; }
  10. body>div { border-bottom:1px solid #ddd; }
  11. h1 { font-weight:normal; }
  12. h2 { margin-bottom:.8em; }
  13. h2 span { font-size:80%; color:#666; font-weight:normal; }
  14. h3 { margin:0em 0 .5em 0; }
  15. h4 { margin:0 0 .5em 0; font-weight: normal; }
  16. table { border:1px solid #ccc; border-collapse: collapse; width:100%; background:white; }
  17. tbody td, tbody th { vertical-align:top; padding:2px 3px; }
  18. thead th { padding:1px 6px 1px 3px; background:#fefefe; text-align:left; font-weight:normal; font-size:11px; border:1px solid #ddd; }
  19. tbody th { width:12em; text-align:right; color:#666; padding-right:.5em; }
  20. ul, ol { margin-left: 2em; margin-top: 1em; }
  21. #summary { background: #a0ffab; }
  22. #summary h2 { font-weight: normal; color: #666; }
  23. #explanation { background:#eee; }
  24. #instructions { background:#f6f6f6; }
  25. #example1 { background:#ffeeee; }
  26. #example2 { background:#eeffee; }
  27. #footer { background:#f6fff6; font-size: 0.8em;}
  28. #summary table { border:none; background:transparent; }
  29. </style>
  30. <link href="/static/css/jchat.css" rel="stylesheet" type="text/css" media="screen,projection" />
  31. <script type="text/javascript" src="/static/js/jquery-1.3.2.min.js"></script>
  32. </head>
  33. <body>
  34. <div id="summary">
  35. <h1><a href="/" style="color: black;">Django-jChat</a></h1>
  36. <h2>Welcome to the django-jchat demo.</h2>
  37. </div>
  38. {% block content %}{% endblock %}
  39. <div id="footer">
  40. Made with <a href="http://www.djangoproject.com" target="_blank">django</a> &amp; <a href="http://jquery.com">jQuery</a>.<br />
  41. Credit where it is due: Images from <a href="http://www.famfamfam.com/lab/icons/silk/" target="_blank">FAMFAMFAM's Silk icon set</a>.<br />
  42. Visit django-jchat at <a href="http://code.google.com/p/django-jchat/" target="_blank">google code</a>
  43. </div>
  44. </body></html>