For example there is a file container.tpl
<div class="container"> </div> There is also a test.tpl file
<div class="test"> </div> And there is also main.tpl
<!DOCTYPE html> <html> <body> {include 'container.tpl'} //Как ставить в container test.tpl? </body> </html> To make it happen
<!DOCTYPE html> <html> <body> <div class="container"> <div class="test"> </div> </div> </body> </html>