blob: bc7eac59a8e414884b5dffa884dbbae53a568097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{* $Header: /cvsroot/bitweaver/_bit_languages/templates/babelfish.tpl,v 1.4 2006/02/06 22:56:47 squareing Exp $ *}
{if $gBitSystem->isFeatureActive( 'babelfish' ) and $gBitSystem->isFeatureActive( 'babelfish_logo' )}
<div class="display babelfish">
<table>
{section loop=$babelfish_links name=i}
<tr>
{if $smarty.section.i.index == 0}
<td>
<a href="{$babelfish_links[i].href}" target="{$babelfish_links[i].target}">{$babelfish_links[i].msg}</a>
</td>
<td rowspan="{$smarty.section.i.total}" align=right>
{$babelfish_logo}
</td>
{else}
<td valign="top">
<a href="{$babelfish_links[i].href}" target="{$babelfish_links[i].target}">{$babelfish_links[i].msg}</a>
</td>
{/if}
</tr>
{/section}
</table>
</div>
{elseif $gBitSystem->isFeatureActive( 'babelfish' ) and !$gBitSystem->isFeatureActive( 'babelfish_logo' )}
<div class="babelfish">
<table>
{section loop=$babelfish_links name=i}
<tr><td>
<a href="{$babelfish_links[i].href}" target="{$babelfish_links[i].target}"> {$babelfish_links[i].msg}</a>
</td> </tr>
{/section}
</table>
</div>
{elseif !$gBitSystem->isFeatureActive( 'babelfish' ) and $gBitSystem->isFeatureActive( 'babelfish_logo' )}
<div class="babelfish">
{$babelfish_logo}
</div>
{/if}
|