Journal specific section
{if $currentJournal->getPath()=='hpc'}
//content here
{/if}
List articles from different sections
{foreach name=sections from=$publishedArticles item=section name=sectionslist key="section_loop"}
{if $section_loop== 8}
{foreach from=$section.articles item="article" key="article_loop" }
{if $article_loop < 1}
{assign var=articlePath value=$article->getBestArticleId($currentJournal)}
<a href="{url page="article" op="view" path=$articlePath}">
{$article->getLocalizedTitle()|strip_unsafe_html}
</a>
{$article->getAuthorString()}
{else}
{php}break;{/php}
{/if}
{/foreach}
{/if}
{/foreach}