%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/IntvJournal/templates/search/ |
Upload File : |
{**
* templates/search/titleIndex.tpl
*
* Copyright (c) 2013-2015 Simon Fraser University Library
* Copyright (c) 2003-2015 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Display published articles by title
*
*}
{strip}
{assign var=pageTitle value="search.titleIndex"}
{include file="common/header.tpl"}
{/strip}
<br />
{if $currentJournal}
{assign var=numCols value=3}
{else}
{assign var=numCols value=4}
{/if}
<div id="results">
<table width="100%" class="listing">
<tr><td colspan="{$numCols|escape}" class="headseparator"> </td></tr>
<tr class="heading" valign="bottom">
{if !$currentJournal}<td width="20%">{translate key="journal.journal"}</td>{/if}
<td width="20%">{translate key="issue.issue"}</td>
<td width="{if !$currentJournal}60%{else}80%{/if}" colspan="2">{translate key="article.title"}</td>
</tr>
<tr><td colspan="{$numCols|escape}" class="headseparator"> </td></tr>
{iterate from=results item=result}
{assign var=publishedArticle value=$result.publishedArticle}
{assign var=article value=$result.article}
{assign var=issue value=$result.issue}
{assign var=issueAvailable value=$result.issueAvailable}
{assign var=journal value=$result.journal}
<tr valign="top">
{if !$currentJournal}<td><a href="{url journal=$journal->getPath()}">{$journal->getLocalizedTitle()|escape}</a></td>{/if}
<td>{if $issueAvailable}<a href="{url journal=$journal->getPath() page="issue" op="view" path=$issue->getBestIssueId($journal)}">{/if}{$issue->getIssueIdentification()|strip_unsafe_html|nl2br}{if $issueAvailable}</a>{/if}</td>
<td width="35%">{$article->getLocalizedTitle()|strip_unsafe_html}</td>
<td width="25%" align="right">
<a href="{url journal=$journal->getPath() page="article" op="view" path=$publishedArticle->getBestArticleId($journal)}" class="file">{if $article->getLocalizedAbstract()}{translate key="article.abstract"}{else}{translate key="article.details"}{/if}</a>
{if $issueAvailable}
{foreach from=$publishedArticle->getGalleys() item=galley name=galleyList}
<a href="{url journal=$journal->getPath() page="article" op="view" path=$publishedArticle->getBestArticleId($journal)|to_array:$galley->getBestGalleyId($journal)}" class="file">{$galley->getGalleyLabel()|escape}</a>
{/foreach}
{/if}
</td>
</tr>
<tr>
<td colspan="{$numCols|escape}" style="padding-left: 30px;font-style: italic;">
{foreach from=$article->getAuthors() item=author name=authorList}
{$author->getFullName()|escape}{if !$smarty.foreach.authorList.last},{/if}
{/foreach}
</td>
</tr>
<tr><td colspan="{$numCols|escape}" class="{if $results->eof()}end{/if}separator"> </td></tr>
{/iterate}
{if $results->wasEmpty()}
<tr>
<td colspan="{$numCols|escape}" class="nodata">{translate key="search.noResults"}</td>
</tr>
<tr><td colspan="{$numCols|escape}" class="endseparator"> </td></tr>
{else}
<tr>
<td {if !$currentJournal}colspan="2" {/if}align="left">{page_info iterator=$results}</td>
<td colspan="2" align="right">{page_links anchor="results" iterator=$results name="search"}</td>
</tr>
{/if}
</table>
</div>
{include file="common/footer.tpl"}