Hi 1ns1de, that is a bug and thanks for asking. I had fix that. Now, you could comment on that page.
How to fix:
Open page.php and find this code:
<p class="meta-date">
<?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?>
<?php edit_post_link( __( 'Edit →', 'baris' ), '<span class="separator">|</span>', '' ); ?>
</p>
add
<?php comments_template( '', true ); ?>
below that code and the result:
<p class="meta-date">
<?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?>
<?php edit_post_link( __( 'Edit →', 'baris' ), '<span class="separator">|</span>', '' ); ?>
</p>
<?php comments_template( '', true ); ?>
If you like, please mark this question as solved.
Cheers,
Malvouz