]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - www/maps/maps/templates/base.mako
Added the "maps" Pylons project.
[dead/census-tools.git] / www / maps / maps / templates / base.mako
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
3 <html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <meta name="author" content="Michael Orlitzky" />
8
9 <title>Map Demo</title>
10
11 ${h.stylesheet_link('/stylesheets/reset.css')}
12 ${h.stylesheet_link('/stylesheets/common.css')}
13
14 % if c.load_maps:
15 <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
16 <script type="text/javascript"
17 src="/javascript/routing?json=${c.json}">
18 </script>
19
20 % endif
21 </head>
22
23 <body>
24
25 ${next.body()}\
26
27 </body>
28 </html>