Mako is a templating engine for Python.
With...
TemplateLookup
Inheritance
<%inherit file="parent_template.html" />
User defined tags
<%def name="mydiv(colour='', title='')">
<div class="${colour} mydiv" title="${title}">
${caller.body()}
</div>
</%def>
<%self:mydiv colour="red">
Some content for mydiv
</%self:mydiv>
And more

