<?php global $shapebootstrap_options; ?>


    <div class="clearfix entry-meta">
        <ul>
            <?php if (isset($shapebootstrap_options['blog-author']) && $shapebootstrap_options['blog-author'] ) { ?>
            <li class="author"><?php the_author_posts_link() ?></li> 
            <?php }?>

            <?php if (isset($shapebootstrap_options['blog-date']) && $shapebootstrap_options['blog-date'] ) { ?>
            <li class="publish-date"><time class="entry-date" datetime="<?php the_time( 'c' ); ?>"><?php the_time('j M,  Y'); ?></time></li>  
            <?php }?>

            <?php if (isset($shapebootstrap_options['blog-category']) && $shapebootstrap_options['blog-category'] ) { ?>
            <li class="category"><?php echo get_the_category_list(', '); ?></li>
            <?php }?>
            
            <?php if (isset($shapebootstrap_options['blog-tag']) && $shapebootstrap_options['blog-tag'] ) { ?>
            <li class="tag"><?php the_tags('', ', ', '<br />'); ?> </li>
            <?php }?>

            <?php if (isset($shapebootstrap_options['blog-comment']) && $shapebootstrap_options['blog-comment'] ){ ?> 
            <?php if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) : ?>
                <li class="comments-link">
                    <?php comments_popup_link( '<span class="leave-reply">' . __( 'No comment', 'shapebootstrap' ) . '</span>', __( 'One comment', 'shapebootstrap' ), __( '% comments', 'shapebootstrap' ) ); ?>
                </li>
            <?php endif; //.comment-link ?>
            <?php } ?>

            <?php if (isset($shapebootstrap_options['blog-edit-en']) && $shapebootstrap_options['blog-edit-en']) { ?>
                <li class="edit-link">
                     <?php edit_post_link( __( 'Edit', 'shapebootstrap' ), '<span class="edit-link">', '</span>' ); ?>
                </li>
            <?php } ?>
        </ul>
    </div> <!--/.entry-meta -->
