/**
  * Main pootle page builder one pager Instance
  * Ensures only one instance of Storefront_Extension_Boilerplate is loaded or can be loaded.
  * @since 1.0.0
  * @return pootle_page_builder_one_pager_Public instance
  */
 public static function instance()
 {
     if (null == self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
 /**
  * Initiates public class and adds public hooks
  * @since 1.0.0
  */
 private function _public()
 {
     //Instantiating public class
     $this->public = pootle_page_builder_one_pager_Public::instance();
     //Adding front end JS and CSS in /assets folder
     add_action('wp_enqueue_scripts', array($this->public, 'enqueue'));
     //1Pager section id anchor
     add_action('pootlepb_render_content_block', array($this->public, 'pager_anchor'), 25);
     //1Pager section id anchor
     add_action('pootlepb_after_pb', array($this->public, 'nav'), 25);
 }