avatar
0.00
0.000
shtrih
shtrih
костыль в виде цикла
Почему цикла, если условия достаточно:
{foreach from=$aContentTypes item=oContentType}
    {if $oContentType->isAccessible()}
        <li class="write-item-type-topic">
            <a href="{router page='content'}{$oContentType->getContentUrl()}/add/" class="content-logo link link-lead link-dark link-clear">
                {if 'my-content-video' == $oContentType->getContentUrl()}
                    <i class="fa fa-file-video"></i>
                {else}
                    <i class="fa fa-file-text-o"></i>
                {/if}
            </a>
            <a href="{router page='content'}{$oContentType->getContentUrl()}/add/" class="write-item-link link link-lead link-dark link-clear">{$oContentType->getContentTitle()|escape:'html'}</a>
        </li>
    {/if}
{/foreach}