%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/JetliJournal/templates/issue/ |
Upload File : |
{**
* templates/issue/issue.tpl
*
* Copyright (c) 2013 Simon Fraser University Library
* Copyright (c) 2003-2013 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Issue
*
*}
{foreach name=sections from=$publishedArticles item=section key=sectionId}
{if $section.title}
<h4 class="tocSectionTitle">{$section.title|escape}</h4>
{/if}
{foreach from=$section.articles item=article}
{assign var=articlePath value=$article->getBestArticleId($currentJournal)}
<article>
{if $article->getLocalizedFileName() && $article->getLocalizedShowCoverPage() && !$article->getHideCoverPageToc($locale)}
<a href="{url page="article" op="view" path=$articlePath}" class="issue-cover">
<img src="{$coverPagePath|escape}{$article->getFileName($locale)|escape}"{if $article->getCoverPageAltText($locale) != ''} alt="{$article->getCoverPageAltText($locale)|escape}"{else} alt="{translate key="article.coverPage.altText"}"{/if}/>
</a>
<div class="article-data article-data-right">
{else}
<div class="article-data article-data-full">
{/if}
{call_hook name="Templates::Issue::Issue::ArticleCoverImage"}
{if $article->getLocalizedAbstract() == ""}
{assign var=hasAbstract value=0}
{else}
{assign var=hasAbstract value=1}
{/if}
{assign var=articleId value=$article->getId()}
{if (!$subscriptionRequired || $article->getAccessStatus() == $smarty.const.ARTICLE_ACCESS_OPEN || $subscribedUser || $subscribedDomain || ($subscriptionExpiryPartial && $articleExpiryPartial.$articleId))}
{assign var=hasAccess value=1}
{else}
{assign var=hasAccess value=0}
{/if}
<header>
{if !$hasAccess || $hasAbstract}
<a href="{url page="article" op="view" path=$articlePath}">{$article->getLocalizedTitle()|strip_unsafe_html}</a>
{else}
{$article->getLocalizedTitle()|strip_unsafe_html}
{/if}
</header>
{if (!$section.hideAuthor && $article->getHideAuthor() == $smarty.const.AUTHOR_TOC_DEFAULT) || $article->getHideAuthor() == $smarty.const.AUTHOR_TOC_SHOW}
<summary>
{foreach from=$article->getAuthors() item=author name=authorList}
{$author->getFullName()|escape}{if !$smarty.foreach.authorList.last},{/if}
{/foreach}
</summary>
{/if}
</div>
<footer>
{if $hasAccess || ($subscriptionRequired && $showGalleyLinks)}
{foreach from=$article->getGalleys() item=galley name=galleyList}
<img src="/public/site/images/putik/Files-Pdf-icon.png" height="15px">
<a href="{url page="article" op="view" path=$articlePath|to_array:$galley->getBestGalleyId($currentJournal)}" {if $galley->getRemoteURL()}target="_blank" {/if}class="file">{$galley->getGalleyLabel()|escape}</a>
{if $subscriptionRequired && $showGalleyLinks && $restrictOnlyPdf}
{if $article->getAccessStatus() == $smarty.const.ARTICLE_ACCESS_OPEN || !$galley->isPdfGalley()}
<img class="accessLogo" src="{$baseUrl}/lib/pkp/templates/images/icons/fulltext_open_medium.gif" alt="{translate key="article.accessLogoOpen.altText"}" />
{else}
<img class="accessLogo" src="{$baseUrl}/lib/pkp/templates/images/icons/fulltext_restricted_medium.gif" alt="{translate key="article.accessLogoRestricted.altText"}" />
{/if}
{/if}
{/foreach}
{if $subscriptionRequired && $showGalleyLinks && !$restrictOnlyPdf}
{if $article->getAccessStatus() == $smarty.const.ARTICLE_ACCESS_OPEN}
<img class="accessLogo" src="{$baseUrl}/lib/pkp/templates/images/icons/fulltext_open_medium.gif" alt="{translate key="article.accessLogoOpen.altText"}" />
{else}
<img class="accessLogo" src="{$baseUrl}/lib/pkp/templates/images/icons/fulltext_restricted_medium.gif" alt="{translate key="article.accessLogoRestricted.altText"}" />
{/if}
{/if}
|
{/if}
<i class="awesome-file-o"> {$article->getPages()|escape}</i>
</footer>
<div class="tocTitle">
{if !$hasAccess || $hasAbstract}
{assign var="doi" value=$article->getStoredPubId('doi')}
{if $doi}
<div>
<div class="tocDoi">
<img src="/public/site/images/putik/icon-doi.png" height="15px">
<a href="http://dx.doi.org/{$doi|escape}">{$doi|escape}</a>
{* Article Metrics *}
<img src="/public/site/images/putik/Graph.png" height="15px"> Abstract views : {$article->getViews()}
<img src="/public/site/images/putik/pdf-icon.png" height="15px"> views : {$galley->getViews()}
{* Article Metrics *}
</div>
</div>
{/if}
{else}
{$article->getLocalizedTitle()|strip_unsafe_html}
{/if}
</div>
</article>
{call_hook name="Templates::Issue::Issue::Article"}
{/foreach}
{if !$smarty.foreach.sections.last}
<div class="separator"></div>
{/if}
{/foreach}