Quick question regards to SEO. Would it not be best to have the category title be an H1 to hopefully rank for that category name? Right now, the overall blog title is the h1 for all category pages. Is that a bad idea?
<?php if ($view == 'entry' || $view == 'categories' || $view == 'tags') { ?>
<h2 class="eb-brand-name reset-heading"><?php echo JText::_($title);?></h2>
<?php } ?>
<?php if ($view != 'entry' && $view != 'categories' && $view != 'tags') { ?>
<h1 class="eb-brand-name reset-heading"><?php echo JText::_($title);?></h1>
<?php } ?>
<h2 class="eb-category-name reset-heading">
<a href="<?php echo $category->getPermalink();?>" class="text-inherit"><?php echo $category->getTitle();?></a>
</h2>