Django

Code

root/djangoproject.com/django_website/templates/base.html

Revision 7892, 2.7 kB (checked in by jacob, 1 week ago)

Checking in template changes from djangoproject.com

Line 
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4         <head>
5                 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6                 <meta http-equiv="Content-Language" content="en-us" />
7
8                 <title>Django | {% block title %}The Web framework for perfectionists with deadlines{% endblock %}</title>
9
10                 <meta name="ROBOTS" content="ALL" />
11                 <meta http-equiv="imagetoolbar" content="no" />
12                 <meta name="MSSmartTagsPreventParsing" content="true" />
13                 <meta name="Copyright" content="This site's design and contents Copyright (c) 2005  Lawrence Journal-World." />
14
15                 <meta name="keywords" content="Python, Django, framework, open-source" />
16                 <meta name="description" content="Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design." />
17
18                 <link href="http://media.djangoproject.com/css/{% block cssid %}base{% endblock %}.css" rel="stylesheet" type="text/css" media="screen" />
19                 <link href="http://media.djangoproject.com/css/print.css" rel="stylesheet" type="text/css" media="print" />
20       {% block extrahead %}{% endblock %}
21         </head>
22
23         <body id="{% block sectionid %}generic{% endblock %}" class="{% block coltype %}default{% endblock %}">
24
25         <div id="container">
26                 <div id="header">
27                         <h1 id="logo"><a href="/"><img src="http://media.djangoproject.com/img/site/hdr_logo.gif" alt="Django" /></a></h1>
28                         <ul id="nav-global">
29                                 <li id="nav-homepage"><a href="/">Home</a></li>
30                                 <li id="nav-download"><a href="/download/">Download</a></li>
31                                 <li id="nav-documentation"><a href="/documentation/">Documentation</a></li>
32                                 <li id="nav-weblog"><a href="/weblog/">Weblog</a></li>
33                                 <li id="nav-community"><a href="/community/">Community</a></li>
34                                 <li id="nav-code"><a href="http://code.djangoproject.com/">Code</a></li>
35                         </ul>
36                 </div>
37                 <!-- END Header -->
38                 <div id="billboard">{% block billboard %}{% endblock %}</div>
39                 <div id="columnwrap">
40                         {% block columnwrap %}
41                                 <div id="content-main">
42                                 {% block content %}{% endblock %}
43                                 </div>
44                                 <!-- END #content-main -->
45                         {% endblock %}
46                 </div>
47                 <!-- END #content -->
48                 <div id="footer">
49                         <p>&copy; 2005-{% now "Y" %} <a href="/foundation/">Django Software Foundation</a> unless otherwise noted. Django is a registered trademark of the Django Software Foundation.
50                         Hosting graciously provided by <a href="http://mediatemple.net/">
51                         <img style="vertical-align: middle; position: relative; top: -1px;" src="http://media.djangoproject.com/img/site/mt.png" alt="media temple" /></a>
52                         </p>
53                 </div>
54                 <!-- END #footer -->
55         </div>
56         <!-- END #container -->
57         </body>
58 </html>
Note: See TracBrowser for help on using the browser.