~ubuntu-branches/ubuntu/maverick/gunicorn/maverick

« back to all changes in this revision

Viewing changes to examples/frameworks/djangotest/testing/templates/base.html

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-07-16 10:44:12 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100716104412-iddgoj0lss2hxg7q
Tags: 0.10.0-1
* New upstream release.
* Add python-setproctitle to Suggests. Thanks to Örjan Persson
  <orange@fobie.net>.
* Bump Standards-Version to 3.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html lang="en">
 
3
    <head>
 
4
        <meta charset="utf-8"/>
 
5
        <title>gunicorn django example app</title>
 
6
        <!--[if IE]>
 
7
 
 
8
        <script>
 
9
            // allow IE to recognize HTMl5 elements
 
10
            document.createElement('section');
 
11
            document.createElement('article');
 
12
            document.createElement('aside');
 
13
            document.createElement('footer');
 
14
            document.createElement('header');
 
15
            document.createElement('nav');
 
16
            document.createElement('time');
 
17
 
 
18
        </script>
 
19
        <![endif]-->
 
20
       
 
21
    </head>
 
22
    <body>
 
23
        <header id="top">
 
24
            <h1>test app</h1>
 
25
        </header>
 
26
        
 
27
        {% block content %}{% endblock %}
 
28
        
 
29
 
 
30
        
 
31
        <footer></footer>
 
32
    </body>
 
33
</html>