[ 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: titleIndex.tpl
{** * templates/search/titleIndex.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. * * 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"}