[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
templates
/
search
/
[
Home
]
File: authorDetails.tpl
{** * templates/search/authorDetails.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Index of published articles by author. * *} {strip} {assign var="pageTitle" value="search.authorDetails"} {include file="common/header.tpl"} {/strip} <div id="authorDetails"> <h3>{$lastName|escape}, {$firstName|escape}{if $middleName} {$middleName|escape}{/if}{if $affiliation}, {$affiliation|escape}{/if}{if $country}, {$country|escape}{/if}</h3> <ul> {foreach from=$publishedArticles item=article} {assign var=issueId value=$article->getIssueId()} {assign var=issue value=$issues[$issueId]} {assign var=issueUnavailable value=$issuesUnavailable.$issueId} {assign var=sectionId value=$article->getSectionId()} {assign var=journalId value=$article->getJournalId()} {assign var=journal value=$journals[$journalId]} {assign var=section value=$sections[$sectionId]} {if $issue->getPublished() && $section && $journal} <li> <em><a href="{url journal=$journal->getPath() page="issue" op="view" path=$issue->getBestIssueId()}">{$issue->getIssueIdentification()|strip_unsafe_html|nl2br}</a> - {$section->getLocalizedTitle()|escape}</em><br /> {$article->getLocalizedTitle()|strip_unsafe_html}<br /> <a href="{url journal=$journal->getPath() page="article" op="view" path=$article->getBestArticleId()}" class="file">{if $article->getLocalizedAbstract()}{translate key="article.abstract"}{else}{translate key="article.details"}{/if}</a> {if (!$issueUnavailable || $article->getAccessStatus() == $smarty.const.ARTICLE_ACCESS_OPEN)} {foreach from=$article->getGalleys() item=galley name=galleyList} <a href="{url journal=$journal->getPath() page="article" op="view" path=$article->getBestArticleId()|to_array:$galley->getBestGalleyId($journal)}" class="file">{$galley->getGalleyLabel()|escape}</a> {/foreach} {/if} </li> {/if} {/foreach} </ul> </div> {include file="common/footer.tpl"}