diff src/main/resources/org/ssdt_ohio/devel/forms/components/Layout.tml @ 0:f4f8570d1c56

initial OTP form
author smith@nwoca.org
date Mon, 12 Nov 2012 16:29:11 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/resources/org/ssdt_ohio/devel/forms/components/Layout.tml	Mon Nov 12 16:29:11 2012 +0000
@@ -0,0 +1,54 @@
+<!--
+<!DOCTYPE html>
+
+Design by Free CSS Templates
+http://www.freecsstemplates.org
+Released for free under a Creative Commons Attribution 2.5 License
+
+Title      : Concrete (modified for Tapestry)
+Version    : 1.0
+Released   : 20080825
+Description: A Web 2.0 design with fluid width suitable for blogs and small websites.
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd"
+      xmlns:p="tapestry:parameter">
+    <head>
+        <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+        <title>${title}</title>
+    </head>
+    <body>
+    <div class="container">
+        <!-- start header -->
+        <div class="row noprint">
+            <div class="span6">
+                    <t:pagelink page="index">org.ssdt_ohio:ssdt.forms</t:pagelink>
+                    &nbsp;
+                    version ${appVersion}
+            </div>
+            <div class="span6">
+                <ul class="nav nav-tabs">
+                    <li t:type="loop" source="pageNames" value="pageName" class="prop:classForPageName">
+                        <t:pagelink page="prop:pageName">${pageName}</t:pagelink>
+                    </li>
+                </ul>
+            </div>
+        </div>
+        <!-- end header -->
+        <!-- start page -->
+        <div class="page">
+            <!-- start content -->
+            <div class="content">
+                <div class="entry">
+                    <t:body/>
+                </div>
+            </div>
+        </div>
+        <!-- end page -->
+        <!-- start footer -->
+        <div class="footer noprint">
+        </div>
+        <!-- end footer -->
+    </div>
+    </body>
+</html>