Edgewall Software

source: trunk/examples/bench/myghty/base.myt

Last change on this file was 394, checked in by cmlenz, 17 years ago

Forgot to add myghty templates for [393].

File size: 419 bytes
Line 
1<!DOCTYPE html
2    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
5
6<%method wrap>
7<%args scope="request">
8  title
9</%args>
10<div id="header">
11  <h1><% title %></h1>
12</div>
13
14<% m.content() %>
15
16</%method>
17
18<div id="footer"></div>
19</html>
20
21<%method greeting>
22<%args>
23   name
24</%args>
25Hello, <% name | h %>
26</%method>
Note: See TracBrowser for help on using the repository browser.