## this is the skeleton of all pages on in this app - it defines the basic html tags ## imports <%! from django_mako_plus import get_template_css, get_template_js %> {{ app_name }} ## add any site-wide scripts or CSS here; for example, jquery: ## render the css with the same name as this page ${ get_template_css(self, request, context) }

Welcome to the {{ app_name }} app!

<%block name="content"> Site content goes here in sub-templates. ## render the JS with the same name as this page ${ get_template_js(self, request, context) }