Suggestion: Wrap post meta with actions in travelify_theloop_for_single()

For consistency, it’d be great if the entry-meta div in travelify_theloop_for_single() was bookended by actions:

*** C:/temp/content-extensions.original.php	Tue May 06 14:15:32 2014
--- C:/temp/content-extensions.php	Tue May 06 14:24:37 2014
***************
*** 269,275 ****
  
    			<?php do_action( 'travelify_after_post_header' ); ?>
  
!   			<?php do_action( 'travelify_before_post_content' ); ?>
  
    			<div class="entry-meta-bar clearfix">
      			<div class="entry-meta">
--- 269,275 ----
  
    			<?php do_action( 'travelify_after_post_header' ); ?>
  
!   			<?php do_action( 'travelify_before_post_meta' ); ?>
  
    			<div class="entry-meta-bar clearfix">
      			<div class="entry-meta">
***************
*** 283,288 ****
--- 283,293 ----
  	             	<?php } ?>
      			</div><!-- .entry-meta -->
      		</div>
+ 
+     		<?php do_action( 'travelify_after_post_meta' ); ?>
+ 
+   			<?php do_action( 'travelify_before_post_content' ); ?>
+ 
    			<div class="entry-content clearfix">
      			<?php the_content();
      			if( is_single() ) {

Thank you for your suggestions! This really does make sense! Will implement it on upcoming update.

Please let me know if you have any other suggestion on how to make this theme even better.