Example #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)) {
Example #2
0
                echo JHtml::_('content.prepare', $item->description, '', 'com_content.categories');
                ?>
						<?php 
            }
            ?>
						</div>
			        <?php 
        }
        ?>
						
					<div class="keywords">
						<?php 
        if (!empty($item->metakey)) {
            ?>
							 <p>Tags: <?php 
            TemplateContentCategoriesHelper::displayMetakeyLinks($item->metakey);
            ?>
</p>
						<?php 
        }
        ?>
						<?php 
        $parent = $item->get('_parent');
        if (is_object($parent)) {
            ?>
							<p>Registrado em: <a href="<?php 
            echo JRoute::_(ContentHelperRoute::getCategoryRoute($parent->id));
            ?>
">
								<?php 
            echo $parent->title;