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
{** * templates/frontend/pages/issueGalley.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 Lightweight page for viewing PDF files * * @uses $pdfTitle string Title of the pdf being viewed * attached to * @uses $galley Galley The PDF galley to display * @uses $parent Issue|Article Object which this galley is attached to *} {* Get the Id of the parent object *} {capture assign="parentUrl"} {if $parent instanceOf Issue} {assign var="parentId" value=$parent->getBestIssueId()} {url op="view" path=$parentId} {else} {assign var="parentId" value=$parent->getBestId()} {url page="article" op="view" path=$parentId} {/if} {/capture} <!DOCTYPE html> <html lang="{$currentLocale|replace:"_":"-"}" xml:lang="{$currentLocale|replace:"_":"-"}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={$defaultCharset|escape}" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{translate key="article.pdf.pageTitle" pdfTitle=$pdfTitle}</title> {load_header context="frontend" headers=$headers} {load_stylesheet context="frontend" stylesheets=$stylesheets} </head> <body> {* Header wrapper *} <header> <a href="{$parentUrl}"> <span> {if $parent instanceOf Issue} {translate key="issue.return"} {else} {translate key="article.return"} {/if} </span> </a> <a href="{$parentUrl}"> {$pdfTitle} </a> <a href="{url page="issue" op="download" path=$parentId|to_array:$galley->getBestGalleyId()}" download> <span> {translate key="common.download"} </span> <span> {translate key="common.downloadPdf"} </span> </a> </header> <iframe></iframe> {call_hook name="Templates::Common::Footer::PageFooter"} </body> </html>