initial commit; version 22.5.12042
This commit is contained in:
6
tests/templates/nested_partials/NestedPartials.php
Normal file
6
tests/templates/nested_partials/NestedPartials.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
class NestedPartials
|
||||
{
|
||||
public $val = 'FOURTH!';
|
||||
}
|
3
tests/templates/nested_partials/nested_partials.mustache
Normal file
3
tests/templates/nested_partials/nested_partials.mustache
Normal file
@ -0,0 +1,3 @@
|
||||
<first>
|
||||
{{> second }}
|
||||
</first>
|
7
tests/templates/nested_partials/nested_partials.txt
Normal file
7
tests/templates/nested_partials/nested_partials.txt
Normal file
@ -0,0 +1,7 @@
|
||||
<first>
|
||||
<second>
|
||||
<third>
|
||||
FOURTH!
|
||||
</third>
|
||||
</second>
|
||||
</first>
|
1
tests/templates/nested_partials/partials/fourth.mustache
Normal file
1
tests/templates/nested_partials/partials/fourth.mustache
Normal file
@ -0,0 +1 @@
|
||||
{{ val }}
|
3
tests/templates/nested_partials/partials/second.mustache
Normal file
3
tests/templates/nested_partials/partials/second.mustache
Normal file
@ -0,0 +1,3 @@
|
||||
<second>
|
||||
{{> third }}
|
||||
</second>
|
3
tests/templates/nested_partials/partials/third.mustache
Normal file
3
tests/templates/nested_partials/partials/third.mustache
Normal file
@ -0,0 +1,3 @@
|
||||
<third>
|
||||
{{> fourth }}
|
||||
</third>
|
Reference in New Issue
Block a user