function tf_template_region_content_empty()
{
    if (TF_Model::is_template_editable()) {
        echo sprintf('<h4>%s</h4>', __('This is Content Section', 'themify-flow'));
        echo sprintf('<p>%s</p>', __('If you would like to add content to this section, you may do so by editing active TF Template > Add Modules', 'themify-flow'));
    }
}
 /**
  * Empty Footer section content.
  * 
  * @since 1.0.0
  * @access public
  */
 public function empty_footer_region()
 {
     if (TF_Model::is_template_editable()) {
         echo sprintf('<p>%s</p>', __('To auto display a footer here, create a new Template Part and name it "Footer".', 'themify-flow'));
     }
 }