You can have the current date show in the BIG DATE on frontpage by drilling dow gk_postnote ---> html ---> com_content ---> category --- > blog item --->
NOW FIND THESE LINES OF CODE :
<div class="article-tools">
<?php if (($this->item->params->get('show_create_date'))) : ?>
<span class="createdate-day">
<?php echo JHTML::_('date', $this->item->created, '%d'); ?>
</span>
<span class="createdate-month">
<?php echo JHTML::_('date', $this->item->created, '%B'); ?>
</span>
CHANGE TO THIS
<div class="article-tools">
<?php if (($this->item->params->get('show_create_date'))) : ?>
<span class="createdate-day">
<?php echo JHTML::_('date', $today, '%d'); ?>
</span>
<span class="createdate-month">
<?php echo JHTML::_('date', $today, '%B'); ?>
</span>
HELPFUL HINT -- THE ONLY CODE YOU CHANGE IS IN THE <SPAN> TAG -- I PROVIDED THE <DIV> BEFORE THE CODE YOU NEED TO CHANGE TO HELP YOU FIND IT QUICKER...
Hope it helps.