Created
November 8, 2019 09:34
-
-
Save ircykk/f56de52533e7f55fba3f3599fc87e9eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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