Blame view

mobile/source/ext/phptal/tests/input/metal-slot.04.html 369 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <span>
  
    <metal:block define-macro="test">
      <div metal:define-slot="content">no content provided</div>
    </metal:block>
  
    <div metal:use-macro="test">
      <div metal:fill-slot="content" tal:condition="fillit">my content</div>
    </div>
  
    <div metal:use-macro="test">
      <div metal:fill-slot="content" tal:condition="not:fillit">my content</div>
    </div>
  
  </span>