Skip to content

Instantly share code, notes, and snippets.

@ircykk
Created November 8, 2019 09:34
Show Gist options
  • Save ircykk/f56de52533e7f55fba3f3599fc87e9eb to your computer and use it in GitHub Desktop.
Save ircykk/f56de52533e7f55fba3f3599fc87e9eb to your computer and use it in GitHub Desktop.
{if isset($features) && count($features)}
<ul>
{foreach from=$features item=f key=key}
{if $f.name !== 'xxx' && $f.name !== 'zzz'}
<li>{$f.name|escape:'html':'UTF-8'} - <b>{$f.value|escape:'html':'UTF-8'}</b></li>
{/if}
{/foreach}
</ul>
{/if}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment