/**
  * Creates or returns an instance of this class.
  *
  * @return Tweeple_Theme_Blvd A single instance of this class.
  *
  * @since 0.4.0
  */
 public static function get_instance()
 {
     if (self::$instance == null) {
         self::$instance = new self();
     }
     return self::$instance;
 }