baseline
[omp.pkp.sfu.ca.git] / templates / about / pressSponsorship.tpl
blob5bffdc13828238ed1b9530f5bde99a84ee255209
1 {**
2  * pressSponsorship.tpl
3  *
4  * Copyright (c) 2003-2009 John Willinsky
5  * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
6  *
7  * About the Press / Press Sponsorship.
8  *
9  * $Id: pressSponsorship.tpl,v 1.2 2009/09/09 21:53:57 tylerl Exp $
10  *}
11 {strip}
12 {assign var="pageTitle" value="about.pressSponsorship"}
13 {include file="common/header.tpl"}
14 {/strip}
16 {if not (empty($sponsorNote) && empty($sponsors))}
17 <div id="sponsors">
18 <h3>{translate key="about.sponsors"}</h3>
20 {if $sponsorNote}<p>{$sponsorNote|nl2br}</p>{/if}
22 <ul>
23         {foreach from=$sponsors item=sponsor}
24         {if $sponsor.url}
25                 <li><a href="{$sponsor.url|escape}">{$sponsor.institution|escape}</a></li>
26         {else}
27                 <li>{$sponsor.institution|escape}</li>
28         {/if}
29         {/foreach}
30 </ul>
31 </div>
32 <div class="separator"></div>
33 {/if}
35 {if !empty($contributorNote) || (!empty($contributors) && !empty($contributors[0].name))}
36 <div id="contributors">
37 <h3>{translate key="about.contributors"}</h3>
39 {if $contributorNote}<p>{$contributorNote|nl2br}</p>{/if}
41 <ul>
42         {foreach from=$contributors item=contributor}
43         {if $contributor.name}
44                 {if $contributor.url}
45                         <li><a href="{$contributor.url|escape}">{$contributor.name|escape}</a></li>
46                 {else}
47                         <li>{$contributor.name|escape}</li>
48                 {/if}
49         {/if}
50         {/foreach}
51 </ul>
52 </div>
53 {/if}
55 {include file="common/footer.tpl"}