<?php/** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */defined('_JEXEC')ordie;JLoader::register('ContentHelperRoute',JPATH_SITE.'/components/com_content/helpers/route.php');?><?phpif($this->params->get('show_articles')):?><divclass="contact-articles"><ulclass="nav nav-tabs nav-stacked"><?phpforeach($this->item->articlesas$article):?><li><?phpechoJHtml::_('link',JRoute::_(ContentHelperRoute::getArticleRoute($article->slug,$article->catid,$article->language)),htmlspecialchars($article->title,ENT_COMPAT,'UTF-8'));?></li><?phpendforeach;?></ul></div><?phpendif;?>