summaryrefslogtreecommitdiff
path: root/demos/activeblog/protected/App_Layouts
diff options
context:
space:
mode:
authorjrags <>2007-02-21 05:38:16 +0000
committerjrags <>2007-02-21 05:38:16 +0000
commit9e0fb737a5b60bb738dfd8c7c4a5b90953eea2a7 (patch)
tree3a0436e6834adadba2535b4a67825589b39f5686 /demos/activeblog/protected/App_Layouts
parent2aa645dd2697838711df45e4d2694a7001c1c58d (diff)
Forgot a few things with activeblog
Diffstat (limited to 'demos/activeblog/protected/App_Layouts')
-rw-r--r--demos/activeblog/protected/App_Layouts/MainLayout.php24
-rw-r--r--demos/activeblog/protected/App_Layouts/MainLayout.tpl23
2 files changed, 47 insertions, 0 deletions
diff --git a/demos/activeblog/protected/App_Layouts/MainLayout.php b/demos/activeblog/protected/App_Layouts/MainLayout.php
new file mode 100644
index 00000000..e307aaed
--- /dev/null
+++ b/demos/activeblog/protected/App_Layouts/MainLayout.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * MainLayout class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2006 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Id: MainLayout.php 1398 2006-09-08 19:31:03Z xue $
+ */
+
+/**
+ * MainLayout class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2006 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ */
+class MainLayout extends TTemplateControl
+{
+}
+
+?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Layouts/MainLayout.tpl b/demos/activeblog/protected/App_Layouts/MainLayout.tpl
new file mode 100644
index 00000000..2cabbfed
--- /dev/null
+++ b/demos/activeblog/protected/App_Layouts/MainLayout.tpl
@@ -0,0 +1,23 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
+
+<com:THead Title=<%$ SiteName %> >
+<meta http-equiv="Expires" content="Fri, Jan 01 1900 00:00:00 GMT"/>
+<meta http-equiv="Pragma" content="no-cache"/>
+<meta http-equiv="Cache-Control" content="no-cache"/>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+<meta http-equiv="content-language" content="en"/>
+</com:THead>
+
+<body>
+<com:TForm>
+
+<com:TContentPlaceHolder ID="Main" />
+
+<div id="footer">
+Copyright &copy; <%= date('Y') %> <%$ SiteOwner %>.<br/>
+<%= Prado::poweredByPrado() %>
+
+</com:TForm>
+</body>
+</html> \ No newline at end of file