diff pylons_app/templates/base/base.html @ 0:564e40829f80

initial commit.
author Marcin Kuzminski
date Thu, 18 Feb 2010 13:01:57 +0100
parents
children d924b931b488
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pylons_app/templates/base/base.html	Thu Feb 18 13:01:57 2010 +0100
@@ -0,0 +1,34 @@
+## -*- coding: utf-8 -*-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+  <style type="text/css">
+  </style>
+  <title>${next.page_title()}</title>
+  <meta name="author" content=""/>
+  <meta name="keywords" content=""/>
+  <meta name="description" content=""/>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+  <link rel="shortcut icon" type="image/x-icon" href="/images/sample.ico"/>
+  <script src="/css_browser_selector.js" type="text/javascript"></script>
+  <script type="text/javascript" src="/js/yui/utilities/utilities.js"></script>
+  <link rel="stylesheet" type="text/css" href="/css/style.css"/>     
+
+</head>
+<body>
+
+  <div id="top-glow"></div>
+
+  <div id="container">
+    ${next.body()}
+
+  <div id="footer" class="clearfix">
+    ${next.footer()}
+  </div><!-- /footer -->
+
+  </div><!-- /container -->
+
+  <div id="bottom-glow"></div>
+
+ </body>
+ </html>
\ No newline at end of file