Blame view

mobile/source/ext/phptal/tests/input/metal-slot.01.html 392 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <div>
    <div metal:define-macro="test">
      <div metal:define-slot="alternative">
         This is my alternative text which is shown when alternative slot is not filled
      </div>
    </div>
  
    <div metal:use-macro="test">
      <div metal:fill-slot="alternative">
         I don't want the alternative
      </div>
    </div>
  
    <div metal:use-macro="test">
       I want the alternative
    </div>
  </div>