<h3 class="entry-title"><a href="<?php 
            the_permalink();
            ?>
" title="<?php 
            echo esc_attr(sprintf(__('%s', 'inti'), the_title_attribute('echo=0')));
            ?>
" rel="bookmark"><?php 
            the_title();
            ?>
</a></h3>
											<div class="row">
												<div class="medium-6 columns">
													<?php 
            $args = array('show_author' => false, 'show_date' => true, 'show_cat' => false, 'show_tag' => false, 'show_icons' => false, 'show_uncategorized' => false);
            echo inti_get_post_header_meta($args);
            ?>
												</div>
												<div class="medium-6 columns">
													<?php 
            echo inti_get_post_page_footer_comments_link();
            ?>
												</div>
											</div>
										</header><!-- .entry-header -->

										<div class="entry-summary">
											<?php 
            the_excerpt();
            ?>
										</div><!-- .entry-content -->   
/**
 * Post header meta
 * Add the post meta in all formats' <header>
 * By default, inti_get_post_header_meta() returns author, time, categories
 * 
 * @since 1.0.0
 */
function inti_do_post_header_meta()
{
    $format = get_post_format() ? get_post_format() : 'standard';
    $show_meta_in_header = true;
    if (current_theme_supports('inti-post-header-meta') && $show_meta_in_header && $format == "standard") {
        echo inti_get_post_header_meta();
    }
}