]> Pileus Git - ~andy/ct/blob - example/html.ct
7f36cc9746f1670e9eaa525f19360cfaadf3e46a
[~andy/ct] / example / html.ct
1 <% void header() { %>
2 Content-Type: application/xhtml+xml; charset=UTF-8
3 <% } %>
4
5 <% void body() { %>
6         <% for (int i = 0; i < 3; i++) %>
7                 <p>hello, world</p>
8 <% } %>
9
10 <% void html() { %>
11 <html>
12         <body>
13                 <% body(); %>
14
15                 <a><%= "%05.2f" %></a>
16         </body>
17 </html>
18 <% } %>