show/hide this revision's text 2 added 504 characters in body

As template engines goes, I really like makrell. It's kind of like functional programming for templates; Gives you a lot of freedom and expressiveness, without getting overly complicated.

To render your example, the makrell markup could look like this:

{ul @ary @var} {{
  <?php if (isset($@ary)): ?>
  <?php $i = 0; ?>
  <ul>
  <?php foreach($@ary as $@var) : ?>
}}

{/ul} {{
  <?php endforeach; ?>
  </ul>
  <?php endif; ?>
}}

{li @var} {{
  <li class="<?= ($i++ % 2 === 0) ? 'odd' : 'even' ?>">
    <?php echo htmlspecialchars($@var); ?>
  </li>
}}

{ul customers cust}
  {li cust}
{/ul}
show/hide this revision's text 1

As template engines goes, I really like makrell. It's kind of like functional programming for templates; Gives you a lot of freedom and expressiveness, without getting overly complicated.