Reputation: 27
i'm using smart to display a bloc of html code .
my problem is that it not interpret my html code.
there is my code
<dl class="accordion">
{foreach $faqs as $allfaq}
<dt><a href="">{$allfaq.question_post}</a></dt>
<dd>
{$allfaq.content|escape:'htmlall':'UTF-8'}
</dd>
{/foreach}
</dl>
and this is the result:
Upvotes: 0
Views: 298