Hi evelyn,
The theme is showing the link to comments in the front page by default. But it probably doesn’t if you use a static front page..
Hurm..if you wanna force the comment to be shown, just add this code into your child theme’s functions.php:
function graphene_force_comment(){
$withcomments = 1; // force comments form and comments to show on front page
comments_template();
}
add_action('graphene_bottom_content', 'graphene_force_comment');
Note that this code is untested, and it assumes that the code you provide above works.