/
zOMGdev
/
cppcms
Обзор
Документация
Войти
/
zOMGdev
/
cppcms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/templates_inheritance/master.tmpl
21 строка
430 B
Artyom Beilis
Some examples updated
14 фев 2012, 08:46
14 фев 2012, 08:46
5575d63
Код
Авторство
О чём код?
<% c++ #include "content.h" %> <% skin myskin %> <% 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 %>