summaryrefslogtreecommitdiff
path: root/templates/main.tmpl
blob: 8e4592fe4464d09a32e0b67ea8c9b2b1fa7c9f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<% c++ #include "content.hpp" %>
<% skin view %>
<% view master uses content::master %>

<% template title( ) %><%= title %><% end %>  
<% template page_content( ) %>Override  Me<% end %>  
    
<% template render( ) %>
<html>
  <head>
    <title><% include title( ) %></title>
  </head>
  <body>
    <h1><% include title( ) %></h1>
    <div id="content">
		<% include page_content( ) %>
	</div>
  </body>
</html>
<% end template %>
<% end view %>
<% end skin %>