Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<table>
{foreach from=$data item=item name=data}
{if $smarty.foreach.data.iteration%2==1}
<tr><td>{$item}</td>
{else}
<td>{$item}</td></tr>
{/if}
{/foreach}
{if $smarty.foreach.data.iteration%2==1}<td></td></tr>{/if}
</table>
Код:<table> {foreach from=$data item=item name=data} {if $smarty.foreach.data.iteration%2==1} <tr><td>{$item}</td> {else} <td>{$item}</td></tr> {/if} {/foreach} </table>