/templates/base.html
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 34<body> 35<div id="summary"> 36 <h1><a href="/" style="color: black;">Django-jChat</a></h1> 37 <h2>Welcome to the django-jchat demo.</h2> 38</div> 39 40{% block content %}{% endblock %} 41<div id="footer"> 42 Made with <a href="http://www.djangoproject.com" target="_blank">django</a> & <a href="http://jquery.com">jQuery</a>.<br /> 43 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 /> 44 Visit django-jchat at <a href="http://code.google.com/p/django-jchat/" target="_blank">google code</a> 45</div> 46</body></html>