Exemple #1
0
">
<?php 
if ($this->params->get('show_page_heading')) {
    ?>
<h1 class="borderHeading">
	<?php 
    echo $this->escape($this->params->get('page_heading'));
    ?>
</h1>
<?php 
}
if ($this->params->get('show_author') || $this->params->get('show_modify_date')) {
    ?>
	<?php 
    $modified = TemplateContentCategoriesHelper::getLastArticleModifiedDate($this);
    $author = TemplateContentCategoriesHelper::getAuthor($this);
    ?>
	<?php 
    if (!empty($author) || !empty($modified)) {
        ?>
	<div class="content-header-options-1 row-fluid">
		<div class="documentByLine">
			<?php 
        if ($this->params->get('show_author') && !empty($author)) {
            ?>
				<span class="documentAuthor"><?php 
            echo JText::sprintf('COM_CONTENT_WRITTEN_BY', '<strong>' . $author . '</strong>');
            ?>
</span>				
				<?php 
            if ($this->params->get('show_modify_date') && !empty($modified)) {