<html>
{{include}}
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
{{block jquery_code}}
{{end}}
</script>
</html>
{{extend 'layout.html'}}
<p>This is a paragraph</p>
{{include 'file_1.html'}}
{{include 'file_2.html'}}
<p>This is file_1.html</p>
{{blockjquery_code}}
//Some jquery code here
{{end}}<p>This is file_2.html</p>
{{blockjquery_code}}
//Some jquery code here
{{end}}
{{extend 'file_1.html'}}
<p>This is file_2.html</p>
{{block jquery_code}}
{{super}}
//Some jquery code here
{{end}}