| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/Topogeo/ojs/templates/article/ |
Upload File : |
{**
* googlescholar.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Metadata elements for articles based on preferred types for Google Scholar
*
* $Id$
*}
<meta name="gs_meta_revision" content="1.1" />
<meta name="citation_journal_title" content="{$currentJournal->getLocalizedTitle()|strip_tags|escape}"/>
{if $currentJournal->getSetting('onlineIssn')}{assign var="issn" value=$currentJournal->getSetting('onlineIssn')}
{elseif $currentJournal->getSetting('printIssn')}{assign var="issn" value=$currentJournal->getSetting('printIssn')}
{elseif $currentJournal->getSetting('issn')}{assign var="issn" value=$currentJournal->getSetting('issn')}
{/if}
{if $issn}
<meta name="citation_issn" content="{$issn|strip_tags|escape}"/>
{/if}
{foreach name="authors" from=$article->getAuthors() item=author}
<meta name="citation_author" content="{$author->getFirstName()|escape}{if $author->getMiddleName() != ""} {$author->getMiddleName()|escape}{/if} {$author->getLastName()|escape}"/>
{if $author->getLocalizedAffiliation() != ""}
<meta name="citation_author_institution" content="{$author->getLocalizedAffiliation()|strip_tags|escape}"/>
{/if}
{/foreach}
<meta name="citation_title" content="{$article->getLocalizedTitle()|strip_tags|escape}"/>
{**
* Google Scholar date: Use article publication date, falling back on issue
* year and issue publication date in sequence. Bug #6480.
*}
{if $article->getDatePublished()}
<meta name="citation_date" content="{$article->getDatePublished()|date_format:"%Y/%m/%d"}"/>
{elseif $issue->getYear()}
<meta name="citation_date" content="{$issue->getYear()|escape}"/>
{elseif $issue->getDatePublished()}
<meta name="citation_date" content="{$issue->getDatePublished()|date_format:"%Y/%m/%d"}"/>
{/if}
<meta name="citation_volume" content="{$issue->getVolume()|strip_tags|escape}"/>
<meta name="citation_issue" content="{$issue->getNumber()|strip_tags|escape}"/>
{if $article->getPages()}
<meta name="citation_firstpage" content="{$article->getPages()|escape}"/>
{/if}
{if $issue->getPublished()}
{assign var=doi value=$article->getDOI()}
{else}
{assign var=doi value=$article->getDOI(true)}{* Don't affix DOI *}
{/if}
{if $doi}
<meta name="citation_doi" content="{$doi|escape}"/>
{/if}
<meta name="citation_abstract_html_url" content="{url page="article" op="view" path=$article->getBestArticleId($currentJournal)}"/>
{if $article->getLanguage()}
<meta name="citation_language" content="{$article->getLanguage()|strip_tags|escape}"/>
{/if}
{if $article->getSubject(null)}{foreach from=$article->getSubject(null) key=metaLocale item=metaValue}
{foreach from=$metaValue|explode:"; " item=gsKeyword}
{if $gsKeyword}
<meta name="citation_keywords" xml:lang="{$metaLocale|String_substr:0:2|escape}" content="{$gsKeyword|escape}"/>
{/if}
{/foreach}
{/foreach}{/if}
{foreach from=$article->getGalleys() item=gs_galley}
{if $gs_galley->getFileType()=="application/pdf"}
<meta name="citation_pdf_url" content="{url page="article" op="download" path=$article->getBestArticleId($currentJournal)|to_array:$gs_galley->getBestGalleyId($currentJournal)}"/>
{else}
<meta name="citation_fulltext_html_url" content="{url page="article" op="view" path=$article->getBestArticleId($currentJournal)|to_array:$gs_galley->getBestGalleyId($currentJournal)}"/>
{/if}
{/foreach}