There should be post meta data (including date) showing as default.
Did you give your posts any Category or Tags?
I did give my posts categories, does that effect the date?
Ok, so I wrote a draft and left it “uncategorized and the date did show up. Is there not a way to categorize a post and have the date show up?
I have another factor that may be causing the dates not to show. Could scheduling the posts for a certain time (in the past or future) cause the meta data not to show?
Look, http://www.hitherehaley.com/2014/03/
Here you can see the date and other post metas, the thing is that customizr by default doesn’t show those metas on home page.
If you want them also in your home page, add this to your child theme functions.php:
add_filter( 'tc_show_post_metas', 'force_show_post_metas', 10, 1 );
function force_show_post_metas($bool){
if ( tc__f('__is_home') )
return true;
return $bool;
}
Hope this helps.