This template doesn’t show the edit icon on articles in the front end when logged in as a super admin. I find code in templatesja_mendozitehtmlcom_contentfeatureddefault_item.php which one would think should work but it doesn’t.
<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
<ul class="actions">
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon">
<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon">
<?php echo JHtml::_('icon.email', $this->item, $params); ?>
</li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon">
<?php echo JHtml::_('icon.edit', $this->item, $params); ?>
</li>
<?php endif; ?>
Yet, I can add this and then I do get an Edit
<?php if ($canEdit) : ?>
<class="edit"> <?php echo JHtml::_('icon.edit', $this->item, $params); ?>
<?php endif; ?>
Is the template just not ready for 3.3?