use 'latest' library versions for maximum lifespan as an example
[gae-samples.git] / image_sharing / base.html
blob98c35de848bd17648d1a17233dc33dda74ead4f6
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5 <title>
6 {% block headtitle %}Image Sharing{% endblock %}
7 </title>
8 <link href='/media/style.css' rel='stylesheet' type='text/css'>
9 </head>
10 <body>
11 <div class='header'>{%block header %}
12 Image Sharing - {% block title %}{% endblock %}
13 {% endblock %}</div>
14 <div class='headerbar'>
15 {% render_user_link current_uri %}
16 </div>
17 <div class='content'>
18 {% block content %}{% endblock %}
19 </div>
20 </body>
21 </html>