~ubuntu-branches/ubuntu/maverick/mahara/maverick-updates

« back to all changes in this revision

Viewing changes to htdocs/artefact/internal/blocktype/contactinfo/theme/default/content.tpl

  • Committer: Bazaar Package Importer
  • Author(s): Nigel McNie
  • Date: 2008-04-29 11:15:39 UTC
  • Revision ID: james.westby@ubuntu.com-20080429111539-b28eqkagavaub2zr
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<ul>
 
2
{foreach from=$profileinfo key=key item=item}
 
3
    <li><strong>{str tag=$key section=artefact.internal}:</strong>
 
4
{if $key == 'email'}
 
5
    <a href="mailto:{$item|escape}">{$item|escape}</a>
 
6
{elseif $key == 'country'}
 
7
    {str tag=country.$item}
 
8
{elseif in_array($key, array('officialwebsite', 'personalwebsite', 'blogaddress'))}
 
9
    <a href="{$item|escape}">{$item|str_shorten:50}</a>
 
10
{else}
 
11
    {$item|escape}
 
12
{/if}</li>
 
13
{/foreach}
 
14
</ul>
 
15