Removed!!
file: /templates/gk_quark/html/com_k2/templates/default/category.php
file result:
<div id="k2Container" class="blog-page <?php if($this->params->get('pageclass_sfx')) echo ' '.$this->params->get('pageclass_sfx'); ?>">
<div class="gkPage">
<div id="gk-content-wrapper">
<?php
$items = array();
if(isset($this->leading)) $items = array_merge($items, $this->leading);
if(isset($this->primary)) $items = array_merge($items, $this->primary);
if(isset($this->secondary)) $items = array_merge($items, $this->secondary);
if(count($items)):
?>
<div class="item-list">
<?php foreach($items as $item): ?>
<?php
$this->item = $item;
echo $this->loadTemplate('item');
?>
<?php endforeach; ?>
</div>
<?php if(count($this->pagination->getPagesLinks())): ?>
<?php if($this->params->get('catPagination')): ?>
<?php echo $this->pagination->getPagesLinks(); ?>
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>
</div>
<?php
$document = JFactory::getDocument();
$renderer = $document->loadRenderer('modules');
if($document->countModules('sidebar')) {
echo '<aside id="gkSidebar">';
echo '<div>';
echo $renderer->render('sidebar', array('style' => 'gk_style'), null);
echo '</div>';
echo '</aside>';
}
?>
</div>
</div>
<?php endif; ?>