summaryrefslogtreecommitdiff
path: root/templates/main.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/main.tmpl')
-rw-r--r--templates/main.tmpl13
1 files changed, 11 insertions, 2 deletions
diff --git a/templates/main.tmpl b/templates/main.tmpl
index 8b5238a..8e4592f 100644
--- a/templates/main.tmpl
+++ b/templates/main.tmpl
@@ -2,10 +2,19 @@
<% skin view %>
<% view master uses content::master %>
-<% template render() %>
+<% template title( ) %><%= title %><% end %>
+<% template page_content( ) %>Override Me<% end %>
+
+<% template render( ) %>
<html>
+ <head>
+ <title><% include title( ) %></title>
+ </head>
<body>
- <p>strusCms</p>
+ <h1><% include title( ) %></h1>
+ <div id="content">
+ <% include page_content( ) %>
+ </div>
</body>
</html>
<% end template %>