{** * templates/frontend/pages/indexJournal.tpl * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2003-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @brief Display the index page for a journal * * @uses $currentJournal Journal This journal * @uses $journalDescription string Journal description from HTML text editor * @uses $homepageImage object Image to be displayed on the homepage * @uses $additionalHomeContent string Arbitrary input from HTML text editor * @uses $announcements array List of announcements * @uses $numAnnouncementsHomepage int Number of announcements to display on the * homepage * @uses $issue Issue Current issue *} {include file="frontend/components/header.tpl" pageTitleTranslated=$currentJournal->getLocalizedName()}
{call_hook name="Templates::Index::journal"} {if !$activeTheme->getOption('useHomepageImageAsHeader') && $homepageImage}
{$homepageImage.altText|escape}
{/if} {* Journal Description *} {if $activeTheme->getOption('showDescriptionInJournalIndex')}

{translate key="about.aboutContext"}

{$currentContext->getLocalizedData('description')}
{/if} {include file="frontend/objects/announcements_list.tpl" numAnnouncements=$numAnnouncementsHomepage} {* Latest issue *} {if $issue}

{translate key="journal.currentIssue"}

{$issue->getIssueIdentification()|strip_unsafe_html}
{include file="frontend/objects/issue_toc.tpl" heading="h3"} {translate key="journal.viewAllIssues"}
{/if} {* Additional Homepage Content *} {if $additionalHomeContent}
{$additionalHomeContent}
{/if}
{include file="frontend/components/footer.tpl"}