comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:f4f8570d1c56
1 <!--
2 <!DOCTYPE html>
3
4 Design by Free CSS Templates
5 http://www.freecsstemplates.org
6 Released for free under a Creative Commons Attribution 2.5 License
7
8 Title : Concrete (modified for Tapestry)
9 Version : 1.0
10 Released : 20080825
11 Description: A Web 2.0 design with fluid width suitable for blogs and small websites.
12 -->
13 <html xmlns="http://www.w3.org/1999/xhtml"
14 xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd"
15 xmlns:p="tapestry:parameter">
16 <head>
17 <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
18 <title>${title}</title>
19 </head>
20 <body>
21 <div class="container">
22 <!-- start header -->
23 <div class="row noprint">
24 <div class="span6">
25 <t:pagelink page="index">org.ssdt_ohio:ssdt.forms</t:pagelink>
26 &nbsp;
27 version ${appVersion}
28 </div>
29 <div class="span6">
30 <ul class="nav nav-tabs">
31 <li t:type="loop" source="pageNames" value="pageName" class="prop:classForPageName">
32 <t:pagelink page="prop:pageName">${pageName}</t:pagelink>
33 </li>
34 </ul>
35 </div>
36 </div>
37 <!-- end header -->
38 <!-- start page -->
39 <div class="page">
40 <!-- start content -->
41 <div class="content">
42 <div class="entry">
43 <t:body/>
44 </div>
45 </div>
46 </div>
47 <!-- end page -->
48 <!-- start footer -->
49 <div class="footer noprint">
50 </div>
51 <!-- end footer -->
52 </div>
53 </body>
54 </html>