5.4.2.2 name="..." attribute

This attribute is ignored if the expr attribute is present.

When the template is executed the specified template file is loaded and executed with the output replacing the <al-include> tag.

For example:

>>> open('other.html', 'w').write('name = "<al-value expr="name">"')
>>> import albatross
>>> ctx = albatross.SimpleContext('.')
>>> ctx.locals.name = 'other.html'
>>> albatross.Template(ctx, '<magic>', '''
... Inserting other.html: <al-include name="other.html"> here.
... ''').to_html(ctx)
>>> ctx.flush_content()
Inserting other.html: name = "other.html" here.