Closed OnkelTem closed 9 years ago
Having this PHP code in original template:
<?php foreach ($fields as $id => $field): ?> <?php print $field->label_html; ?> <?php print $field->content; ?> <?php endforeach; ?>
how would you write this in jade2php?
http://jade-lang.com/reference/iteration/
each field, id in fields != field.label_html != field.content
Ah, thanks, I forgot jade2php is so smart :)
Having this PHP code in original template:
how would you write this in jade2php?