mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
9 lines
282 B
Plaintext
9 lines
282 B
Plaintext
<div>
|
|
<div rt-repeat="pirate in [{first: 'Jack', last: 'Sparrow', photo: {url: 'jack.jpg'}}, {first: 'Unknown', last: 'Pirate'}]">
|
|
<h1>{pirate.first} {pirate.last}</h1>
|
|
<div rt-if="pirate.photo" rt-scope="pirate.photo.url as url">
|
|
<img src="{url}"/>
|
|
</div>
|
|
</div>
|
|
</div>
|