Fixed PHP syntax in skeleton template files.
This commit is contained in:
parent
7faf852561
commit
88df5fcd04
|
@ -5,8 +5,8 @@
|
|||
?>
|
||||
<h1>Skeleton</h1>
|
||||
|
||||
<? foreach( $_["array"] as $item ){ ?>
|
||||
<p><? echo $item ?></p>
|
||||
<? } ?>
|
||||
<?php foreach($_["array"] as $item): ?>
|
||||
<p><?php echo $item; ?></p>
|
||||
<?php endforeach; ?>
|
||||
|
||||
<? echo $_["anothervar"] ?>
|
||||
<?php echo $_["anothervar"]; ?>
|
||||
|
|
Loading…
Reference in New Issue