~jonas-drange/ubuntu-start-page/1252899-mobile-friendly

« back to all changes in this revision

Viewing changes to src/Mako-0.1.9/examples/bench/myghty/base.myt

  • Committer: Matthew Nuzum
  • Date: 2008-04-18 01:58:53 UTC
  • Revision ID: matthew.nuzum@canonical.com-20080418015853-2b8rf979z2c2exxl
adding files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
<%args scope="request">
 
6
    title
 
7
</%args>
 
8
 
 
9
<& REQUEST:header &>
 
10
 
 
11
<body>
 
12
<div id="header">
 
13
  <h1><% title %></h1>
 
14
</div>
 
15
 
 
16
% m.call_next()
 
17
 
 
18
<div id="footer"></div>
 
19
 
 
20
</body>
 
21
</html>
 
22
 
 
23
 
 
24
<%method greeting>
 
25
<%args>
 
26
   name
 
27
</%args>
 
28
Hello, <% name | h %>
 
29
</%method>