{** * templates/frontend/pages/contact.tpl * * Copyright (c) 2014-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @brief Display the page to view the press's contact details. * * @uses $currentContext Journal|Press The current journal or press * @uses $mailingAddress string Mailing address for the journal/press * @uses $contactName string Primary contact name * @uses $contactTitle string Primary contact title * @uses $contactAffiliation string Primary contact affiliation * @uses $contactPhone string Primary contact phone number * @uses $contactEmail string Primary contact email address * @uses $supportName string Support contact name * @uses $supportPhone string Support contact phone number * @uses $supportEmail string Support contact email address *} {include file="frontend/components/header.tpl" pageTitle="about.contact"}
{include file="frontend/components/breadcrumbs.tpl" currentTitleKey="about.contact"} {include file="frontend/components/editLink.tpl" page="management" op="settings" path="context" anchor="contact" sectionTitleKey="about.contact"} {* Contact section *}
{if $mailingAddress}
{$mailingAddress|nl2br|strip_unsafe_html}
{/if} {* Primary contact *} {if $contactTitle || $contactName || $contactAffiliation || $contactPhone || $contactEmail}

{translate key="about.contact.principalContact"}

{if $contactName}
{$contactName|escape}
{/if} {if $contactTitle}
{$contactTitle|escape}
{/if} {if $contactAffiliation}
{$contactAffiliation|strip_unsafe_html}
{/if} {if $contactPhone}
{translate key="about.contact.phone"} {$contactPhone|escape}
{/if} {if $contactEmail} {/if}
{/if} {* Technical contact *} {if $supportName || $supportPhone || $supportEmail}

{translate key="about.contact.supportContact"}

{if $supportName}
{$supportName|escape}
{/if} {if $supportPhone}
{translate key="about.contact.phone"} {$supportPhone|escape}
{/if} {if $supportEmail} {/if}
{/if}
{include file="frontend/components/footer.tpl"}