home_featured_profiles.tpl

来自「太烦了」· TPL 代码 · 共 30 行

TPL
30
字号
{strip}
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
	<tr>
		<td class="module_detail" width="100%">
			{assign var="page_hdr01_text" value="{lang mkey='featured_profiles'}"}
			{include file="page_hdr01.tpl"}

			<table  width="100%" cellpadding="{$config.cellpadding}"  cellspacing="{$config.cellspacing}" border="0">
			{assign var="ccount" value="0"}
			{foreach item="item" key=key from=$featured_profiles}
				{if $ccount is div by 2}
					<tr>
				{/if}
					<td width="50%">{include file="userresultviewsmall.tpl"}</td>
				{if $ccount is not div by 2}
					</tr>
				{/if}
				{math equation="$ccount+1" assign="ccount"}
			{/foreach}
			  {if $ccount is not div by 2}
					<td width="50%"></td>
				</tr>
			  {/if}
			</table>

		</td>
	</tr>
</table>
<br />
{/strip}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?