Blame view

mobile/source/ext/phptal/tests/input/metal-slot.02.html 577 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <div>
    <div metal:define-macro="test1">
      1:<span metal:define-slot="value">a value should go here</span>
    </div>
  
    <div metal:define-macro="test2">
      2a:<span metal:define-slot="value">a value should go here</span>
      2b:<span metal:define-slot="valuebis">another here</span>
    </div>
  
    <div metal:use-macro="test1">
      <div metal:fill-slot="valuebis">unused invalid valuebis</div>
      <div metal:fill-slot="value"  tal:omit-tag="">
        <div metal:use-macro="test2">
        <span metal:fill-slot="value">foo bar baz</span>
        </div>
      </div>
    </div>
  
  </div>