KONTOLODON
/
var
/
www
/
ojs-3.3.0-13
/
plugins
/
themes
/
healthSciences
/
templates
/
frontend
/
pages
/
Nama File / Folder
Size
Action
about.tpl
1.035KB
Hapus
Edit
Rename
aboutThisPublishingSystem.tpl
1.157KB
Hapus
Edit
Rename
announcement.tpl
1.206KB
Hapus
Edit
Rename
announcements.tpl
1.247KB
Hapus
Edit
Rename
article.tpl
1.021KB
Hapus
Edit
Rename
catalogCategory.tpl
3.826KB
Hapus
Edit
Rename
contact.tpl
3.355KB
Hapus
Edit
Rename
editorialTeam.tpl
1.008KB
Hapus
Edit
Rename
indexJournal.tpl
5.617KB
Hapus
Edit
Rename
indexSite.tpl
2.018KB
Hapus
Edit
Rename
information.tpl
1.026KB
Hapus
Edit
Rename
issue.tpl
3.916KB
Hapus
Edit
Rename
issueArchive.tpl
2.273KB
Hapus
Edit
Rename
issueInterstitial.tpl
1.837KB
Hapus
Edit
Rename
message.tpl
0.972KB
Hapus
Edit
Rename
navigationMenuItemViewContent.tpl
0.725KB
Hapus
Edit
Rename
privacy.tpl
0.866KB
Hapus
Edit
Rename
purchaseIndividualSubscription.tpl
1.846KB
Hapus
Edit
Rename
purchaseInstitutionalSubscription.tpl
3.874KB
Hapus
Edit
Rename
search.tpl
4.414KB
Hapus
Edit
Rename
searchAuthorDetails.tpl
2.724KB
Hapus
Edit
Rename
searchAuthorIndex.tpl
2.689KB
Hapus
Edit
Rename
submissions.tpl
4.264KB
Hapus
Edit
Rename
subscriptions.tpl
3.736KB
Hapus
Edit
Rename
userLogin.tpl
1.145KB
Hapus
Edit
Rename
userLostPassword.tpl
1.963KB
Hapus
Edit
Rename
userRegister.tpl
1.804KB
Hapus
Edit
Rename
userRegisterComplete.tpl
1.62KB
Hapus
Edit
Rename
userSubscriptions.tpl
10.442KB
Hapus
Edit
Rename
{** * templates/frontend/pages/issue.tpl * * Copyright (c) 2014-2020 Simon Fraser University * Copyright (c) 2003-2020 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @brief Display a landing page for a single issue. It will show the table of contents * (toc) or a cover image, with a click through to the toc. * * @uses $issue Issue The issue * @uses $issueIdentification string Label for this issue, consisting of one or * more of the volume, number, year and title, depending on settings * @uses $issueGalleys array Galleys for the entire issue *} {include file="frontend/components/header.tpl" pageTitleTranslated=$issueIdentification} <div class="container page-issue"> {* Display a message if no current issue exists *} {if !$issue} <div class="page-header page-issue-header"> {include file="frontend/components/notification.tpl" messageKey="current.noCurrentIssueDesc"} </div> {* Display an issue with the Table of Contents *} {else} <div class="page-header page-issue-header"> {* Indicate if this is only a preview *} {if !$issue->getPublished()} {include file="frontend/components/notification.tpl" messageKey="editor.issues.preview"} {/if} <h1>{$issue->getIssueSeries()|escape}</h1> <div class="page-issue-date"> {translate key="plugins.themes.healthSciences.currentIssuePublished" date=$issue->getDatePublished()|date_format:$dateFormatLong} </div> {* PUb IDs (eg - DOI) *} {foreach from=$pubIdPlugins item=pubIdPlugin} {assign var=pubId value=$issue->getStoredPubId($pubIdPlugin->getPubIdType())} {if $pubId} {assign var="doiUrl" value=$pubIdPlugin->getResolvingURL($currentJournal->getId(), $pubId)|escape} {if $doiUrl} {capture assign="pubId"} <a href="{$doiUrl}"> {$doiUrl} </a> {/capture} {/if} <div class="page-issue-doi"> {if $pubIdPlugin->getPubIdType() == 'doi'} {$pubId} {else} {translate key="plugins.themes.healthSciences.issuePubId" pubIdType=$pubIdPlugin->getPubIdDisplayType()|escape pubId=$pubId} {/if} </div> {/if} {/foreach} </div> <div class="row justify-content-center page-issue-details"> {if $issueGalleys || $issue->hasDescription() || $issue->getLocalizedTitle()} <div class="col-lg-9"> <div class="page-issue-description-wrapper"> {if $issue->hasDescription() || $issue->getLocalizedTitle()} <div class="page-issue-description"> <div class="h2"> {if $issue->getLocalizedTitle()} {$issue->getLocalizedTitle()} {else} {translate key="plugins.themes.healthSciences.issueDescription"} {/if} </div> {$issue->getLocalizedDescription()|strip_unsafe_html} </div> {/if} {if $issueGalleys} <div class="page-issue-galleys"> <div class="h3"> {translate key="issue.fullIssue"} </div> {foreach from=$issueGalleys item=galley} {include file="frontend/objects/galley_link.tpl" parent=$issue purchaseFee=$currentJournal->getSetting('purchaseIssueFee') purchaseCurrency=$currentJournal->getSetting('currency')} {/foreach} </div> {/if} </div> </div> {/if} {if $issue->getLocalizedCoverImageUrl()} <div class="col-lg-3"> <a href="{url op="view" page="issue" path=$issue->getBestIssueId()}"> <img class="img-fluid page-issue-cover" src="{$issue->getLocalizedCoverImageUrl()|escape}"{if $issue->getLocalizedCoverImageAltText() != ''} alt="{$issue->getLocalizedCoverImageAltText()|escape}"{/if}> </a> </div> {/if} </div><!-- .row --> <div class="row{if !$issue->getLocalizedDescription() || !$issue->getLocalizedCoverImageUrl()} issue-wrapper{/if}"> <div class="col-12 col-lg-9"> {include file="frontend/objects/issue_toc.tpl" sectionHeading="h2"} </div> </div> {/if} </div> {include file="frontend/components/footer.tpl"}