forked from pkp/pkp-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
203 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{** | ||
* templates/frontend/pages/masthed.tpl | ||
* | ||
* Copyright (c) 2024 Simon Fraser University | ||
* Copyright (c) 2024 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @brief Display journal's masthead page. | ||
* | ||
*} | ||
{include file="frontend/components/header.tpl" pageTitle="common.masthead"} | ||
|
||
<div class="page page_masthead"> | ||
{include file="frontend/components/breadcrumbs.tpl" currentTitleKey="common.masthead"} | ||
|
||
<h1>{translate key="common.masthead"}</h1> | ||
{foreach from=$mastheadRoles item="mastheadRole"} | ||
{if $mastheadRole->getRoleId() != \PKP\security\Role::ROLE_ID_REVIEWER} | ||
{if array_key_exists($mastheadRole->getId(), $mastheadUsers)} | ||
<h2>{$mastheadRole->getLocalizedName()|escape}</h2> | ||
<ul> | ||
{foreach from=$mastheadUsers[$mastheadRole->getId()] item="mastheadUser"} | ||
<li> | ||
{$mastheadUser['user']->getFullName()|escape}, | ||
{$mastheadUser['user']->getLocalizedData('affiliation')|escape}, | ||
{$mastheadUser['dateStart']} | ||
{if $mastheadUser['user']->getData('orcid')} | ||
<span class="orcid"> | ||
{if $mastheadUser['user']->getData('orcidAccessToken')} | ||
{$orcidIcon} | ||
{/if} | ||
<a href="{$mastheadUser['user']->getData('orcid')|escape}" target="_blank"> | ||
{$mastheadUser['user']->getData('orcid')|escape} | ||
</a> | ||
</span> | ||
{/if} | ||
</li> | ||
{/foreach} | ||
</ul> | ||
{/if} | ||
{/if} | ||
{/foreach} | ||
|
||
{if !empty($reviewers)} | ||
<h2>{translate key="common.masthead.peerReviewers"}</h2> | ||
<p>{translate key="common.masthead.peerReviewers.description" year=$previousYear}</p> | ||
<ul> | ||
{foreach from=$reviewers item="reviewer"} | ||
<li>{$reviewer->getFullName()|escape}</li> | ||
{/foreach} | ||
</ul> | ||
{/if} | ||
</div><!-- .page --> | ||
|
||
{include file="frontend/components/footer.tpl"} |