1{if $excluded}
2	{remarksbox type=tip title=Tip icon=help}{tr}More languages are available. To view them, update languages you can read from <a href="tiki-user_preferences.php" class="alert-link">user preferences</a> or your browser's preferences.{/tr}{/remarksbox}
3{/if}
4{if $side_by_side}
5	<table>
6		<tr>
7			{foreach item=body from=$content key=k}
8				{if $k == 0 || $k == 1}
9					<td width="50%">{$body}</td>
10				{/if}
11			{/foreach}
12		</tr>
13		{if $content|@count > 2}
14			{foreach item=body from=$content key=k}
15				{if $k > 1}
16					<tr>
17						<td colspan="2">{$body}</td>
18					</tr>
19				{/if}
20			{/foreach}
21		{/if}
22	</table>
23{else}
24	<ul class="all_languages">
25		{foreach item=body from=$content}
26			<li>{$body}</li>
27		{/foreach}
28	</ul>
29{/if}
30