<templates>
<t t-name="jquery-extend">
    <ul><li>one</li></ul>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="ul" t-operation="append"><li>3</li></t>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="ul li:first-child" t-operation="replace"><li>2</li></t>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="ul" t-operation="prepend"><li>1</li></t>
    <t t-jquery="ul" t-operation="before"><hr/></t>
    <t t-jquery="ul" t-operation="after"><hr/></t>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="ul">
        this.attr('class', 'main');
    </t>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="hr:eq(1)" t-operation="replace"><footer></footer></t>
</t>
<t t-extend="jquery-extend">
    <t t-jquery="footer" t-operation="inner"><b>[[end]]</b></t>
</t>

<t t-name="jquery-extend-clone" t-extend="jquery-extend">
    <t t-jquery="ul" t-operation="append"><li>[[cloned template]]</li></t>
</t>

</templates>
