~ubuntu-branches/ubuntu/raring/genshi/raring-proposed

« back to all changes in this revision

Viewing changes to examples/bench/myghty/base.myt

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Fontaine
  • Date: 2007-04-16 17:49:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070416174903-x2p3n9g890v18d0m
Tags: 0.4-1
* New upstream release.
* Remove useless python-markup transition package.
* Add Provides against python-markup.
* Add doc-base.
* Add depends against python-xml.
* Add suggests to python-setuptools.

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
 
 
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>
 
25
Hello, <% name | h %>
 
26
</%method>