function genesis_do_post_content() { if ( is_singular() ) { the_content(); if ( is_single() && 'open' == get_option( 'default_ping_status' ) ) { echo '' . "\n"; } if ( is_page() && apply_filters( 'genesis_edit_post_link', true ) ) edit_post_link( __( '(Edit)', 'genesis' ), '', '' ); } elseif ( 'excerpts' == genesis_get_option( 'content_archive' ) ) { the_excerpt(); } else { if ( genesis_get_option( 'content_archive_limit' ) ) the_content_limit( (int) genesis_get_option( 'content_archive_limit' ), __( '[Read more...]', 'genesis' ) ); else the_content( __( '[Read more...]', 'genesis' ) ); } ?> ADD YOUR HTML CONTENT HERE