Skip to content

Instantly share code, notes, and snippets.

@sgarcez
Created May 4, 2017 10:21
Show Gist options
  • Save sgarcez/148ee877fa5311946208389757aa4e4d to your computer and use it in GitHub Desktop.
Save sgarcez/148ee877fa5311946208389757aa4e4d to your computer and use it in GitHub Desktop.
mako conditional inheritance
<%!
def inherit_base(context):
if not context.get('request').is_xhr:
return "./base.mako"
%>
<%inherit file="${inherit_base(context)}"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment