Lines Matching refs:partials
522 ## partials.mako
528 <%include file="partials.mako" />
538 ``parent.mako`` via the include for ``partials.mako``. But this is not the case.
539 Instead, ``parent.mako`` will invoke ``partials.mako``, which then invokes
540 ``"header"`` in ``partials.mako``, and then is finished rendering. Nothing
542 block in ``child.mako`` and the ``"header"`` block in ``partials.mako``.
545 In order to call upon specific elements of ``partials.mako``, we will call upon
550 ## partials.mako
556 <%namespace name="partials" file="partials.mako"/>
558 ${partials.header()}
568 is to participate within. ``partials.mako`` only defines defs/blocks that can be