AlkantarClanX12
Current Path : /home/thanudqk/siamfreetour.com/wp-content/uploads/2024/02/ |
Current File : /home/thanudqk/siamfreetour.com/wp-content/uploads/2024/02/spiko.1.1.5.zip |
PK �uKX�ؒ<� � spiko/404.php<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package spiko */ get_header();?> <section class="section-space error-page bg-default"> <div class="container<?php echo esc_html(spiko_container());?>"> <div class="row"> <div class="col-lg-12 col-sm-12"> <div class="text-center"> <h2 class="title mb-0 count-up" data-from="0" data-to="404" data-time="2000"><?php esc_html_e('404', 'spiko' ); ?></h2> <h3 class="sub-title"><?php esc_html_e('Oops! Page is not available','spiko' ); ?></h3> <p><?php esc_html_e("We're not being able to find the page you're looking for",'spiko' ); ?></p> <div class="mx-auto pt-4"> <a href="<?php echo esc_url(home_url('/')); ?>" class="btn-small btn-default"><?php esc_html_e('Back to Homepage', 'spiko' ); ?></a> </div> </div> </div> </div> </div> </section> <?php get_footer();?>PK �uKXWw��z z spiko/archive.php<?php /** * The template for displaying archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package spiko */ get_header();?> <section class="section-space blog"> <div class="container<?php echo esc_html(spiko_blog_post_container());?>"> <div class="row"> <?php if ( is_active_sidebar( 'sidebar-1' ) ): echo '<div class="col-lg-8 col-md-7 col-sm-12 standard-view">'; else: echo '<div class="col-lg-12 col-md-12 col-sm-12 standard-view">'; endif; if (have_posts()): while (have_posts()): the_post(); if(! function_exists( 'spiko_plus_activate' ) ){ get_template_part( 'template-parts/content'); } else{ include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content.php' ); } endwhile; else: get_template_part('template-parts/content', 'none'); endif; // pagination do_action('spiko_post_navigation'); // pagination ?> </div> <?php get_sidebar();?> </div> </div> </section> <?php get_footer(); ?>PK �uKX9�q�� � spiko/comments.php<?php /** * The template for displaying comments * * This is the template that displays the area of the page that contains both the current comments * and the comment form. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package spiko */ /* * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ if (post_password_required()) { return; } if (have_comments()) : ?> <article class="comment-section"> <div class="comment-title"> <h3> <?php $spiko_comment_count = get_comments_number(); if ('1' === $spiko_comment_count) { printf( /* translators: 1: title. */ esc_html__('1 comment', 'spiko' ), '<span>' . esc_html(get_the_title()) . '</span>' ); } else { printf( /* translators: 1: comment count number, 2: title. */ esc_html(_nx('%1$s comment', '%1$s comments', $spiko_comment_count, 'comments title', 'spiko' )), esc_html(number_format_i18n($spiko_comment_count)), '<span>' . esc_html(get_the_title()) . '</span>' ); } ?> </h3> </div> <?php the_comments_navigation(); wp_list_comments('type=comment&callback=spiko_comment'); the_comments_navigation(); // If comments are closed and there are comments, let's leave a little note, shall we? if (!comments_open()) : ?> <p class="no-comments"><?php esc_html_e('Comments are closed.', 'spiko' ); ?></p> <?php endif; ?> </article> <?php endif; echo '<article class="comment-form">'; $fields=array( 'author' => '<p><span class="blog-form-group your-name"> <input type="text" name="author" value="" size="40" class="blog-form-control" placeholder="'.__('Your Name','spiko' ).'" aria-required="true" arai-invalid="false"> </span></p>', 'email' => '<p><span class="blog-form-group your-email"> <input type="email" name="email" value="" size="40" class="blog-form-control" placeholder="'.__('Your Email','spiko' ).'" aria-required="true" arai-invalid="false"> </span></p>', 'url' => '<p> <span class="blog-form-group your-subject"> <input type="text" name="url" value="" size="40" class="blog-form-control" placeholder="'.__('Website','spiko' ).'" aria-required="true" arai-invalid="false"> </span> </p>', ); function spiko_fields($fields) { return $fields; } add_filter('comment_form_default_fields','spiko_fields'); $defaults = array( 'fields'=> apply_filters( 'comment_form_default_fields', $fields ), 'comment_field'=> '<p><span class="blog-form-group-textarea your-message"> <textarea id="comments" type="text" rows="4" name="comment" value="" size="40" class="blog-form-control" placeholder="'.esc_html__('Message','spiko' ).'" aria-required="true" arai-invalid="false"></textarea> </span></p>', 'logged_in_as' => '<p class="blog-post-info-detail">' . esc_html__("Logged in as",'spiko' ).' '.'<a href="'. esc_url(admin_url( 'profile.php' )).'">'.$user_identity.'</a>'. '<a href="'. esc_url(wp_logout_url( get_permalink() )).'" title="'.esc_html__('Log out from this Account','spiko' ).'">'.' '.esc_html__("Log out",'spiko' ).'?</a>' . '</p>', 'id_submit'=> 'blogdetail-btn', 'label_submit'=>esc_html__('Send Message','spiko' ), 'comment_notes_after'=> '', 'comment_notes_before' => '', 'title_reply'=> '<div class="comment-title">'.esc_html__('Leave a Reply', 'spiko' ).'</div>', 'id_form'=> 'commentform' ); ob_start(); comment_form($defaults); echo '</article>';?>PK �uKX�H�7� � spiko/footer.php<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package spiko */ if ( ! function_exists( 'spiko_plus_activate' ) ): do_action('spiko_footer_section_hook'); else: do_action('spiko_plus_footer_section_hook'); endif;?> </div> </div> <?php wp_footer(); ?> </body> </html>PK �uKXAbN�) ) spiko/functions.php<?php // Global variables define define('SPIKO_TEMPLATE_DIR_URI', get_template_directory_uri()); define('SPIKO_TEMPLATE_DIR', get_template_directory()); if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { /** * Triggered after the opening <body> tag. */ do_action( 'wp_body_open' ); } } require( SPIKO_TEMPLATE_DIR . '/inc/font/font.php'); require( SPIKO_TEMPLATE_DIR . '/inc/scripts/script.php'); require( SPIKO_TEMPLATE_DIR . '/inc/menu/default_menu_walker.php'); require( SPIKO_TEMPLATE_DIR . '/inc/menu/spiko_nav_walker.php'); require( SPIKO_TEMPLATE_DIR . '/inc/widgets/sidebars.php'); // Adding customizer files require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer.php' ); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/custom-control.php' ); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/helper-function.php'); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_sections_settings.php' ); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/single-blog-options.php' ); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/blog-options.php' ); require_once SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-slider/customizer-slider.php'; require_once SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-image-radio/customizer-image-radio.php'; require_once SPIKO_TEMPLATE_DIR . '/inc/class-tgm-plugin-activation.php'; if ( ! function_exists( 'spiko_plus_activate' ) ){ require( SPIKO_TEMPLATE_DIR . '/inc/breadcrumbs/breadcrumbs.php'); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-pro-feature.php' ); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_theme_style.php' ); require( SPIKO_TEMPLATE_DIR . '/inc/customizer/general-settings.php'); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer-recommended-plugin.php'); require ( SPIKO_TEMPLATE_DIR . '/inc/customizer/blog-page-options.php' ); require( SPIKO_TEMPLATE_DIR . '/inc/custom-style/custom-css.php'); require( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_color_back_settings.php'); require( SPIKO_TEMPLATE_DIR . '/inc/customizer/customizer_typography.php'); } // Theme title if (!function_exists('spiko_head_title')) { function spiko_head_title($title, $sep) { global $paged, $page; if (is_feed()) return $title; // Add the site name $title .= get_bloginfo('name'); // Add the site description for the home / front page $site_description = get_bloginfo('description'); if ($site_description && ( is_home() || is_front_page() )) $title = "$title $sep $site_description"; // Add a page number if necessary. if (( $paged >= 2 || $page >= 2 ) && !is_404()) $title = "$title $sep " . sprintf(esc_html__('Page', 'spiko' ), max($paged, $page)); return $title; } } add_filter('wp_title', 'spiko_head_title', 10, 2); if (!function_exists('spiko_theme_setup')) : function spiko_theme_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. */ load_theme_textdomain('spiko' , SPIKO_TEMPLATE_DIR . '/languages'); // Add default posts and comments RSS feed links to head. add_theme_support('automatic-feed-links'); //Add selective refresh for sidebar widget add_theme_support('customize-selective-refresh-widgets'); /* * Let WordPress manage the document title. */ add_theme_support('title-tag'); // supports featured image add_theme_support('post-thumbnails'); // This theme uses wp_nav_menu() in two locations. register_nav_menus(array( 'spiko-primary' => esc_html__('Primary', 'spiko' ), )); //Custom background support add_theme_support('custom-background'); // woocommerce support add_theme_support('woocommerce'); add_theme_support('wc-product-gallery-zoom'); add_theme_support('wc-product-gallery-lightbox'); add_theme_support('wc-product-gallery-slider'); //Custom logo add_theme_support('custom-logo', array( 'height' => 61, 'width' => 212, 'flex-width' => true, 'flex-height' => true, 'header-text' => array('site-title', 'site-description'), )); // set default content width if (!isset($content_width)) { $content_width = 696; } //About Theme if(!function_exists( 'spiko_plus_activate' )) : $spiko_theme = wp_get_theme(); // gets the current theme if ('Spiko' == $spiko_theme->name) { if (is_admin()) { require SPIKO_TEMPLATE_DIR . '/admin/admin-init.php'; } } endif; } endif; add_action('after_setup_theme', 'spiko_theme_setup'); add_action( 'admin_init', 'spiko_customizer_css' ); function spiko_customizer_css() { wp_enqueue_style( 'spiko-pro-info', SPIKO_TEMPLATE_DIR_URI . '/assets/css/pro-details.css' ); } function spiko_logo_class($html) { $html = str_replace('custom-logo-link', 'navbar-brand custom-logo', $html); return $html; } add_filter('get_custom_logo', 'spiko_logo_class'); function spiko_new_content_more($more) { global $post; return '<p><a href="' . esc_url(get_permalink()) . "#more-{$post->ID}\" class=\"more-link btn-ex-small btn-border\">" . esc_html__('Read More', 'spiko' ) . "</a></p>"; } add_filter('the_content_more_link', 'spiko_new_content_more'); if ( ! function_exists( 'spiko_plus_activate' ) ){ add_action( 'tgmpa_register', 'spiko_register_required_plugins' ); /** * Register the required plugins for this theme. * * In this example, we register five plugins: * - one included with the TGMPA library * - two from an external source, one from an arbitrary source, one from a GitHub repository * - two from the .org repo, where one demonstrates the use of the `is_callable` argument * * The variables passed to the `tgmpa()` function should be: * - an array of plugin arrays; * - optionally a configuration array. * If you are not changing anything in the configuration array, you can remove the array and remove the * variable from the function call: `tgmpa( $plugins );`. * In that case, the TGMPA default settings will be used. * * This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10. */ function spiko_register_required_plugins() { /* * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $plugins = array( // This is an example of how to include a plugin from the WordPress Plugin Repository. array( 'name' => esc_html__('Contact Form 7', 'spiko' ), 'slug' => 'contact-form-7', 'required' => false, ), array( 'name' => esc_html__('Spice Box', 'spiko' ), 'slug' => 'spicebox', 'required' => false, ), array( 'name' => esc_html__('Unique Headers','spiko'), 'slug' => 'unique-headers', 'required' => false, ), array( 'name' => esc_html__('Yoast SEO','spiko'), 'slug' => 'wordpress-seo', 'required' => false, ), array( 'name' => esc_html__('Spice Post Slider','spiko'), 'slug' => 'spice-post-slider', 'required' => false, ), array( 'name' => esc_html__('Spice Social Share', 'spiko'), 'slug' => 'spice-social-share', 'required' => false, ), array( 'name' => esc_html__('Seo Optimized Images', 'spiko'), 'slug' => 'seo-optimized-images', 'required' => false, ) ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); } } function spiko_modify_read_more_link() { $blog_button = get_theme_mod('spiko_blog_button_title', 'READ MORE'); if (empty($blog_button)) { return; } return '<p><a href = "' . esc_url(get_the_permalink()) . '" class="btn-small">' . esc_html($blog_button) . ' <i class="fa fa-angle-double-right"></i></a></p>'; } add_filter( 'the_content_more_link', 'spiko_modify_read_more_link' ); //spiko sanitize checkbox function spiko_sanitize_checkbox($checked) { // Boolean check. return ( ( isset($checked) && true == $checked ) ? true : false ); } //spiko sanitize text function spiko_sanitize_text($input) { return wp_kses_post(force_balance_tags($input)); }PK �uKXn��� � spiko/header.php<?php /** * The header for our theme * * @package spiko */ ?> <!DOCTYPE html> <html <?php language_attributes(); ?> > <head> <meta charset="<?php bloginfo('charset'); ?>"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"> <?php if (is_singular() && pings_open(get_queried_object())) : echo '<link rel="pingback" href=" '.esc_url(get_bloginfo( 'pingback_url' )).' ">'; endif; wp_head(); ?> </head> <?php if(get_theme_mod('banner_enable',true)==true) { $spiko_banner='banner'; } else { $spiko_banner='remove-banner'; } if(get_theme_mod('spiko_layout_style', 'wide') == "boxed") { $spiko_class = "boxed"; } else { $spiko_class = "wide"; } ?> <body <?php body_class($spiko_class." ". $spiko_banner." ".get_theme_mod('spiko_color_skin','light')); ?> > <?php wp_body_open(); ?> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'spiko' ); ?></a> <div id="wrapper"> <?php global $template; global $woocommerce; if ( ! function_exists( 'spiko_plus_activate' ) ): do_action('spiko_preloader_feaure_section_hook'); get_template_part('inc/header/header-nav'); if(basename($template)!='template-business.php'): spiko_breadcrumbs(); endif; else: do_action('spiko_plus_preloader_feaure_section_hook'); do_action('spiko_plus_header_feaure_section_hook'); if(basename($template)!='template-business.php'): spiko_breadcrumbs(); endif; endif;?> <div id="content">PK �uKX�I�� � spiko/home.php<?php get_header(); if('page' == get_option('show_on_front')){ get_template_part('index');} elseif(is_home()){ get_template_part('index');} elseif ( ! function_exists( 'spiko_plus_activate' ) ){ get_template_part('index');} elseif (function_exists( 'spiko_plus_activate' ) ) { $spiko_front_page = get_theme_mod('front_page_data','cta1,services,cta2,portfolio,testimonial,news,fun,team,wooproduct,client,contact'); do_action( 'spiko_plus_before_slider_section_hook', false); do_action( 'spiko_plus_slider_action' , false); do_action( 'spiko_plus_after_slider_section_hook', false); $spiko_data =is_array($spiko_front_page) ? $spiko_front_page : explode(",",$spiko_front_page); if($spiko_data) { foreach($spiko_data as $key=>$value) { do_action( 'spiko_plus_before_'.$value.'_section_hook', false); do_action( 'spiko_plus_'.$value.'_action', false); do_action( 'spiko_plus_after_'.$value.'_section_hook', false); } } } get_footer();PK �uKX �v̧ � spiko/index.php<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package spiko */ get_header();?> <section class="section-space blog bg-default"> <div class="container<?php echo esc_html(spiko_blog_post_container());?>"> <div class="row"> <?php if ( is_active_sidebar( 'sidebar-1' ) ): echo '<div class="col-lg-8 col-md-7 col-sm-12">'; else: echo '<div class="col-lg-12 col-md-12 col-sm-12">'; endif; if (have_posts()): while (have_posts()): the_post(); if(! function_exists( 'spiko_plus_activate' ) ){ get_template_part( 'template-parts/content'); } else{ if(get_theme_mod('post_nav_style_setting','pagination')=='pagination'): include(SPIKOP_PLUGIN_DIR.'/inc/template-parts/content.php' ); endif; } endwhile; else: get_template_part('template-parts/content', 'none'); endif; // pagination if ( ! function_exists( 'spiko_plus_activate' ) ){ do_action('spiko_post_navigation'); }else{ do_action('spiko_plus_post_navigation'); } // pagination ?> </div> <?php get_sidebar();?> </div> </div> </section> <?php get_footer(); ?>PK �uKXS���� � spiko/page.php<?php /** * The template for displaying all pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site may use a * different template. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package spiko */ get_header();?> <section class="section-space page bg-default"> <div class="container<?php echo esc_html(spiko_container());?>"> <div class="row"> <?php if (class_exists('WooCommerce')) { if (is_account_page() || is_cart() || is_checkout()) { echo '<div class="col-lg-' . (!is_active_sidebar("woocommerce") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("woocommerce") ? "12" : "7" ) . ' col-xs-12">'; } else { echo '<div class="col-lg-' . (!is_active_sidebar("sidebar-1") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("sidebar-1") ? "12" : "7" ) . ' col-xs-12">'; } } else { echo '<div class="col-lg-' . (!is_active_sidebar("sidebar-1") ? "12" : "8" ) . ' col-md-' . (!is_active_sidebar("sidebar-1") ? "12" : "7" ) . ' col-xs-12">'; } ?> <?php if (class_exists('WooCommerce')) { if (is_account_page() || is_cart() || is_checkout()) { while (have_posts()) : the_post(); get_template_part('template-parts/content', 'page'); if (comments_open() || get_comments_number()) : comments_template(); endif; endwhile; } else { while (have_posts()) : the_post(); get_template_part('template-parts/content', 'page'); if (comments_open() || get_comments_number()) : comments_template(); endif; endwhile; } } else { while (have_posts()) : the_post(); get_template_part('template-parts/content', 'page'); if (comments_open() || get_comments_number()) : comments_template(); endif; endwhile; } ?> </div> <?php if (class_exists('WooCommerce')) { if (is_account_page() || is_cart() || is_checkout()) { get_sidebar('woocommerce'); } else { get_sidebar(); } } else { get_sidebar(); } ?> </div> </section> <?php get_footer(); ?>PK �uKX|u�+ + spiko/readme.txt== Spiko == Contributors: spicethemes Requires at least: 4.5 Tested up to: 6.2 Stable tag: 1.1.5 Requires PHP: 5.4 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Spiko WordPress Theme is a lightweight, elegant, fully responsive, and translation-ready theme that allows you to create stunning blogs and websites. The theme is well suited for companies, law firms, eCommerce, finance, agency, travel, photography, design, arts, personal, and any other creative websites and blogs. The theme is developed using the Bootstrap 4 framework. It comes with a predesigned home page, good-looking header designs, and a number of content sections that you can easily customize. It also has lots of customization options (banner, services, testimonial, etc) that will help you create a beautiful, unique website in a short time. Spiko is compatible with popular plugins like Polylang, WooCommerce and Contact Form 7. The theme provides custom breadcrumb trail options for popular plugins - Breadcrumb NavXT, Yoast SEO, and Rank Math SEO plugin .This theme is fully GDPR-compliant and doesn’t use any external Google Fonts. All fonts are locally hosted. Spiko theme is available in several locales. (DEMO: https://spiko.spicethemes.com/) == Installation == 1. In your admin panel, go to Appearance > Themes and click the Add New button. 2. Click Upload and Choose File, then select the theme's .zip file. Click Install Now. 3. Click Activate to use your new theme right away. == Keyboard navigation == Keyboard navigation is working properly in the forward direction by using the tab key. For the reverse direction, Shift+Tab key is working on all the parent menus and if the dropdown menus are open then it is working on it. The focus is moving back to the parent menu having submenus from the next menu in a reverse direction. The menu that have #, once it is open then dropdown menus are open by using the space key. == License == Spiko WordPress Theme, Copyright (C) 2022-2023, spicethemes Spiko WordPress Theme is distributed under the terms of the GNU GPL == Changelog == @Version 1.1.5 * Added Rank Math,Seo Yoast and NavXT Breadcrumbs Feature. @Version 1.1.4 * Fix css conflic issue with WooCommerce Rental & Booking System plugin. @Version 1.1.3 * Added google font locally feature. * Recommended SEO Optimized plugin. @Version 1.1.2 * Fixed escaping issue in customizer notice. @Version 1.1.1 * Recommended the Spice Social Share plugin on the options page. @Version 1.1 * Fixed preloader and some style issues. @Version 1.0 * Updated tested up to field in style.css and readme file. * Added WooCommerce gallery theme support. * Fixed some style issues. @Version 0.9 * Removed one click demo tab in option's page. @Version 0.2 * Fixed the issues with PHP 8. * Recommended the Spice Post Slider plugin on the options page. @Version 0.1 * Initial release == External resources == Font Awesome Copyright: (c) Dave Gandy License: https://fontawesome.com/license ( Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License ) Source: https://fontawesome.com Bootstrap Copyright: (c) Twitter License: MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) Source: https://getbootstrap.com jQuery Copyright: (c) OpenJS Foundation and jQuery contributors License: MIT license Source: https://jquery.org SmartMenus jQuery Plugin Copyright: (c) Vasil Dinkov, Vadikom Web Ltd License: MIT license Source: https://github.com/vadikom/smartmenus/blob/master/dist/jquery.smartmenus.js Owl Carousel Copyright: (c) David Deutsch License: MIT license Source: https://cdnjs.com/libraries/OwlCarousel2/2.2.1 Customizer Sortable Kirki, Copyright © 2016 Aristeides Stathopoulos License: MIT License, http://www.opensource.org/licenses/MIT Source: https://github.com/aristath/kirki jquery.mb.YTPlayer Copyright (c) 2001-2018. Matteo Bicocchi (Pupunzi) License: Under GPL and MIT Source: https://github.com/pupunzi/jquery.mb.YTPlayer Customizer Notify Copyright: (c) Mikesetzer License: Under GNU General Public License Source: https://github.com/mikesetzer/origintheme/tree/master/ti-customizer-notify Customizer toggle control Copyright: (c) 2016 soderlind License: Under GNU General Public License v2.0 Source: https://github.com/soderlind/class-customizer-toggle-control Custom Slider, Image Radio & Text Radio Button Controls Copyright: (c) Anthony Hortin License: Under GNU General Public License v2.0 Source: https://github.com/maddisondesigns/customizer-custom-controls == Images == * Image used in screenshot, License CC0 Public Domain https://pxhere.com/en/photo/109465 * Background Image used in Page Header, License CC0 Public Domain https://pxhere.com/en/photo/99193 * Images on /assets/images folder Copyright (C) 2022-2023, spicethemes and available as [GPLv2](https://www.gnu.org/licenses/gpl-2.0.html)PK �uKX���9� 9� spiko/screenshot.png�PNG IHDR � � ��8� �PLTE 5�9������ "#![UTNGD)1+$D>:80*XQN<5/&%,%M@: 1$_XW#a][RMK&)#8)+>0*)!B71#%3E78(G92YKD ,")6)!*.%/4HQW9DK.1$@-"VZ^*4;���/:BM7+ZB4<L@��١��E1%����ÿwȅZ�Q�ๅ��(r,ŧ����qom�����Ѳܵ��qOw��qL>�o/�5,@���o�h&w �IDATx���n۸�).U풍i;��1-�� ���E�"z���-���,�f�xR�:���_�l��)���d���*W����ܶ0�����+���I��&�Կ����7o4m��x���K���[]QZ�^y�i�T�|��ֹ".:=�}��vts�ׄ����ו�ȋ5�j_������o,>�%����l�aXL��O�m����ܟ�j�m�P�vd�z���a[��S��{p�>X榠�6��^3�ܰ�<�膊WX\w_S��+�>;�%��+f�5������v��r��C�z�+B r���0���D��N<S��O�v]ǐ���#���T2�*��:��W<���ھ��l��D�Fӭ�,���m�]�� ,�1� jEeB��?e���[S���%Ϙ�U���V J #����7�G����JK�JRq+.-8�St@�B� ���� �0;*c���� +s�V���#{k(�[�f*��ū�_,�QE�ҥ~�G��z�>���"��eˬ$4S�Z^��7�bk�TmD����+�����T�4� ��2U3-b�;`A���t�-G'�DH:�6����dg2�e+E�`�L �,٣~��~=`��,{u��^���9`�j���E,�L%�U}�ս�Q`������ҖVu�Z�f�JZq�s�+sL�p�J�N�-�B`��\7"7 �ۆL3)`Ep!�n� .-�((8����ZO��D�zO`S���|ȑ2'<�����;̯e^��4OX�KZ5�`��h�4O���q�@��,έ�ɝ��BdN��q�|-����%�j Xnx�X�~�",������"���R�˨���C�&r���=I,�\�K�o��BOo^,�ܹbbU�H�ɡ��C�?;���w�Y�2HyŬ���#v�eF��V�W�d1V���*vpߜHH ��B��%��J,2�3��}���X�8O�)@��1���9i�� ��p!�*G[�W�ko�T���x��b|N�`����%�j��^��jbaX�J�����aN|\�����H+^��q��gx�8�Gr�Mx�V�v|%�ۡV��v����R-%�\�bu1����ڷU��C7�?�8��B`.�K&|�j������q�V!�����J?Iʇ�L�X�w,�]�BK�t��6�Mx�aU�"�yA�֪������� W���[`5XZd�G���¼��,��9�2&L��:�_,^V��l�b%.��#�r�s}K�ZЄ˸�O�@� ���M���*�8Z5Kz-�(�L��%��KyU��-!�Hs��F� �3C� Z�ɨ��� �wa��'�2��b�l� _4�ǦB��p\e�fC� �+`��W5�G��m��,B�d`�ª\�܌���UC���9���.��F��K�X����0�,��f�Xޔ�MdZ3�y�B�I���2��U��*`��3/? 1�!߸����(X{�Y}v�5���d&���XY���� �0�ÅK�6�Xa����xfRpք�C�fD�a㧻+`��Ί����V�?K� V�}�*��bͧaq_b����˃�k����Jq� �N�x�^va����m�֣g�n��-���r#HrJz�2�<�Ap�E��ީ��u����4����2�.ja�EX6_5@T"�ΩwL�� ZBVIb$����Y��O/ȩZTy�������5�D�]��,�-�ل�G��i����1v12��"�Y^e3G!��hϯVj��fu�dt����IȮ��j��>�z� ˮ���t}� �z�+�+�(��2�a��`���uN��ƻ �ZWvڮ(�]��`=�����*�\5�����#����LĞ�B��V�;s��|Z�o`�l¢���,1�b���jIhR���If��`yOiJ�U���A$x��{)��ڦZ�,���"yU�?���#P�8O�7����"�9����E��������DOP��.2O|k�Q���$|�v��ݳ)�5�$q��N9�(�W8{,,/���ez+�����̙T>j��kT\R�r� x�����~W|�~�kk/a�hl^Ίo�=lY�K6�*Z��� Ne��Ѹ����߬7���Y�U�[��KnN���SAA]Ms܇�;��KXs1��n@ K�UM6Mk��)=�e�d ����9�:��L|P�곰�p�<ؤ/kXl �<d��q%\���bU|i6�����gͤ�u����/��3��$�Y�a�����0�4e�f���L �}�rA� �xu�e� ,t������_n�+�p4��sSY�I��L"%��w4��Wƥ9�B^ /��$�R�"� �+Y��ᕗ��c����a�TXq(y3�0�a�L|gg`���88`AѪ��9���$~&�0+b����Yy���S�Z��V�����|���?r�S��`�� X e����L���8X5�vn8�}�;���J�\��V٢�{ղ�pE����������2u����m��Ʈ�)�R�� ��ծ�<��U�cuNs�3��_0I x���,��S� '��Qck<1����?__�?~��r~B�៳-߿I�������}���L� �?_[elODa�U����� �ec �L����Abs����J)����]q�����6��jF%�qJamV���]�.� �k��%�ۆpG��"b�](Yr��q����z�n�!T��}^ݍZY��d���؈�??����`�<|u��y��}�g��n0Z|�*�� ��G?�P-'�xջ�?�BC,��p� Vr�`:�\�*=�aW�W��VS��x�w����~��J���˘��7u�ܧ��گ��j7�u�E�>�άb*8`"��2/�7��J�|�v�y56�A7��e��p ��)�O�X�=��� �"��b,�����A˫��3=���l��{k�y�l`� �[#�%<�ͫ�i,�(�\� ��2�4�� ��@�R��pY-aM�����tc�WjTl5��=�<��Xȫ�=hI�O�sO��NY'�gR��:��z~VH1g�b���E���`n� KͿX���!���p�Rn�$�ǧ��`�_�ҩ���� &�K�Ft];��'�.�l��Y`�-�M]�X;�uc�Օ�Uw�i*��21p�l ���e�"��J`�����ۅ�O��@��T�Y�/{{N�i��2SSk v6�@ �3�����Og{��uƮ���yqCN˱Mk�'S�(�C���w�$��+H��U��ܤ?X`�-dV��e��4V���+�ɞ���w ����(,˖*^�Ljt= �):��n+��m�՟NjV�|*a=·d4+�/�L�{���j��m�zc&�_Lj�b��ě�& ,�˲P�]XFa |�A���W%��~��-������}�� �����Ү����W>������ k�H�X�v�W�="� )� �Y�T�F�e:[x� J+���A����ˉ5���k�� �3#�����u��0�XKϣ�%nL|��},sX�����'l�I����ȥ�'I5p��m�&��v�U�vmOa�K2E�-��TNXܪ��-��z������J�D�Aڜ��2���$�u�u��~DŽm1u��D�HD)�Y���Lj�Z���>��kAمo���qw.L�+Kσ���J-�+K�ڲ��j�G*9������L2y�R�=�* �� 3?���ݓx��ް��-���~��^��ؽ� �6�TLa�,b�� 8�A�&3>�d�F+�O_��!7�6����Z[�#����T���������2Ő�U��v���B���n��n�����V�G��p��(����+?KD!q�*���s:aP�*���>,�׳��AMij�r��+�.�U��8"����Q���r�1G�MS`)���+��{���,�4����?��j��Wo��+�&^#�D\+�ʠ���tMg��;� ��V�&U��w��WI�r<�ݲ%w����̤�x�ߜ;�$��q��Dn�4�eR^��NV�8�;��Vw��S�����^�iJ&�p�Ћ0`�sQc,E5�>��-�V(,]r��G� I� (�X�hW�c,�i�N��k��.Oə��0-��;���>��"�6��_O�-�Y$_ ����Juh.��*Xִ���vֽ��~ZH���Mc� cU����I�*�y �PRa��hb������T�;�D֟4� �Q��}X$�1M6bNw��Ê4�,,�:���T�<�Mm�e�4��&=�I�f`N0jL���F+�은���,B�?�<i]6qc�~�+:�Snp�;��W6�sy6�Z�g����솿F^�oX����~��?, �ͭ灵��{���W��Ӣ>l~�fL�ŅJ�|5}�@aE���z�w9nS�TWR�v<�j&�V���jZ�{gT)�|X�I�7�&a� ��0`uVv�ي�<(�X��q�Q����&�e�pC\�:`�!��ӍԚJ�"ߎ���V�W���I��0�(�-e�f��0����+��n��<��zwz_�,-_���<�0�9��vOW�z����,�a�G�%S���\�g���႙��X�v��YYg|ΐ��Ԝ_:�,,'�+�BO�/_��J5ĉ3Q��������Fg,���{Ý�gƩq��D�iJf�+�,�:�-�tQc�f�X,�t�^�6�*�mt�J+7�����V���k2`ͱ���b�n�>��e���ᡣ�\l��3�!dF��kJ���T��j)�Ep��*-��,��ps}Qղ���3�:��]QoV����r�Ci7k���6���(F��i� W��Ј�lTXźHi��ў��Bso�]ٌE7G6~�>3 _�,�]k����o�b4+f����Α%��W������,��_ݧ��k��vs�ۣ���g�-1J��4��W����'qX���tQ�]?��z9=c� �V6�n�T$i��Y�I~�UKC�k��m�4�Vx�G,7��d:k2��N�l�o�i�¢�t �]��w�wE��O�<^?���_�V�t�;���#���w|{|�'�C`��S���蝽8����O�v�u���_�/�!�� / �!��>�ҽ�2�"��ݫ9��B�]�8��Qsa<��'��>����9���=���п��q/��WX�2�v�D!jM�Di �4M�k��Q/��F�P���J�U�����c"�"S��I��@�v��e���VY�!VZ^X�L�_����[�*�/jV�J�}]�6��������_��J�{6��Y�q���MK�J��X��g, ��h Q��ɶq���s�M�%��m�jV��|d��c'*��i��#$���e`�6_�h�غ���cY�ײ�Ҡ�?�3��c�`9~vG7�:w��9�� �KA��m�ji�ǖ����؝:��cO�0O7���(A�kh�v簑�^%���-8���uR �:��D���W V74m�}.�q�-�Pr�`�W�;4�� ����|�g3:��D�VXԏ)�|��q=�с|��:��8���ާ���v�k�� ��s����h�$�q� N�:�6�@���T���y������}ģ�� ��Y���r��ʡ,6O0u*(��� �W�m�y֛V�1h�f "V�4I��'S�j�Z�Fx��bAb�TEh��Ef����b:]| �*�U$�1*��ߪ�K!�$���̗�����5u��aNa�ǿ'�`���Z�##�;ܡ�X�s�����P��]@�y�L�P`ã b�ޗro�:�es��:�sE�'���{��P#Pb��{G�m[���� �ņXY�Kk�m���Y�b�:#�f�~�����Ul(),@am���c ���w(!����{ �L��+�J �(�h/��=*��gm}R�]� ���;�ze��4i��U�;���7 V�W���k�KG�f����X����љTDf�9�|�L-�U�T���m�&�� a���%�3����Ԝ^�i�r+%ֆ�b~�X5���q��{e`�� kb�=hN�#��k�NPlY�"K�*��=��Ι?�����,>N�>L�y���a����%��Ck�����͂D@C8/� �*�}���� P��7���p@+LB�{�s;r)�Z�� Ug96�K5`�C ����] xJ�N��}Xqʪ]l��` ��c$���RA��u�Dõ�������,�v�T@p7�~'��p"��nH�bH��+��h�Jb���4Db�hri^���原��^PX�1āEh���S���Ҡ==] ,M��/�5htƃ�4>5=됋+���!���u�Z��*W��s�GEx��jZ�y�� ���0�>�I�,[� wf�>,���56���YO���A�&�&a�q/g�}��T.��`���e�w���PXb��p�[4�`�Н�f��>�NJW��~�#��@MK�����J�I��}���Zf�b�F.��~=����(!E���n�[�MOc� <`!����N�x@I�ks��qX�)]@F��ƭ���ӝ�:x���1��g�G讁W�#E�ժ��#�I�wx�ll-��\C�<^�ʝ����ZV�"U$�3��1X+������O�F�]=��ɰ�̔�Q �!<N�8H�d8���������Z�/yWÖ:��ۦ2�r� ������ǝ�a�O�FY �����l�&i�&���[E���{�y�9|��Y��¼����a��_;b�Xuh��j4����P, O7������ڂ�$<�kKȢu��n�aS�l{����Wsz��M.�ד���>,��-�4,��S��oS�����z��'Xt�(Q�ăye�Km�Nv�qy~�}IaR��3_Sn�=�]�m>��M.����m��a��v�v���l֡v��ٟ|������;��>�gX�;�(��6�剒�.gXSJ����q)�}XL� +�]�i�a9#�*J�<U�Q;)���(�U �*��Õ+2 "� � ��q� X��ھ�,����R�j-,�7�zE(n0� �qW�O��FekU. D<X�b�i�a^ҽXI"�!�X� �e� �����ζȖ5�.���P��E��JN� ǔRѻ�q|�l8t�}D'�W��l����t?�e��3q��j4>@���hHg�������t��Û=����h����E0���'|�|MNqz�� ���G>-�ػ+ˇ�#�r��1[�9�W��l[��ud릟�E^����5�Rpjn-���)d>��.�`�$7�Dc� ����:�TK��>�R!'M�w�g� X��_�����Wv�\�^��` ��w�Y���[,CeV��C X�D��'* k �X�YEN�ҫݬbu� �%�s,[:+�}SeƁ�X�ۓ1��a+ ,��\��3�s��am�RK-Z�aE�YDn��ʔX�F��� 9y�H��P�-��Q�`���~��}}s<+d�9�����E-C��喿~��A)ۢ�'���"��`K��Ě��] ��q�>m�/U�[>�&��Bzi2=V��H�i��F�B�� ����-�aECJ�d�'���}���#_ԗ���Yk�~�%�k���`����8�q�쭢lg,]@�Z|�|@��e��-�!��[U��l����PT �$+IvU���3Q�}P@�ޯ� k������^�-��H}���P��Mqs�CF�O5�*i;l��~��A�|���O��V�3��n�H�� �B�#�Yo�Pk�'�J��$��|C�k#��x��*RD���\s �� �HGQ �Q�� ��GA��l�D�y��Y�]�e���E�& -�� X�f�2�9лw���-5�9���V�ҽn��Ug}�I��n[� ��]��/Z ՕKH/��[�,� ���D�蓶��Cv!���2`>�<K_ч%.��%��G'�P6�72���=�0�k��+g����SY\���U����U�VMm�*�,jI�6^A��=!�@3��Xq�#M0��U�X7#�G�}�7�V���\¥�M p���'�^�ߧ%C��\�qRbS6�k�b��t��W�Aת5��xx=�D>@_3�/���)���W��$�O��r���|<<C=�Q9H>�ɘ9���*���Dzaw0Pm�P���=eC+�(�j��qφV4�J&���_�h����πɰ~�Ǥ����+��"�)F\ՏW�M�6�ux��:�5���5�ò�ڪ������|�o�8��^���ǫѕ;�O|B����8�uOxk����?G�P�*����H�$LM��<!�V�.Ĩʣ��j�Wuf���]������D��SF,G[�%�q�T��% Fźq�ڍ�jֵ�i>g&�k�W�"]sj^� ��ns�Ƨ��pr��#�c|E�,`�����ʀ���x�e�z��`��龘�B�h93Q�j�3�h����H�4Wn�P��GS�JY��} ���S�����Ka5�Ӏ�3(Kc�!AP"Y��*l�� ���fR�*��W��J?�q��-]��?��f���ʍ6��RI�i`�r���t~���q+�a80��Fx��>k<����R���N����b��P���&x�x� Ѡ̾Md��n�@5�I�z�7U\�2�!�6����v�PLF���a������{)�crAF���Gv霸ϓ�Ȩ$h��/��a�� ܁m:,�tz� �M)�d�؟��ҝ��@�96�M]�����Z$��^�uel�/�ҽ^�g�g��r�^�a�T#q��"���~����n��=gX�?r��#M�I���A��l84���8X� �dRR L(3�H:�ډ��$f�W0�p��!�Y}&�Q�܂�����c�MG{�HFQ�1HG��("�E5P� ��s���Vg�F���u��Ͱ�$��vD��UU� d�x�� ��i�(�ԍ��R/�*^�{ruЦ�~�u�E �� ���}{�e�Qv4=���������xttB>��KtNZ���J o�,�-�g�k ������C�r-8�6ޢ�<�X�/��V� �P[E��Y�1�I��=���9`@���Ő�#2"�FY�(�%8E-ҋ(��� �# �1��1&��2Li�[�U��"Q�x��Ī X.�{Ὕ�î�'�t���@LЬ��.kF��PA+�^�aA��xi�P�3 �T�:�p37?���V �O +�gS�婛S�������ä�,�T��иoL� E �;j�1B(ȴG�#���G�3&= j}Ҁ�_!�⌒�F��S�I�o�E����v�)M���)�j'���!b7J��Gm�Z��/[W来=��*ܩ��o� O7P)c����aX������!�E��) `#g��?ꊁR��C97�ծ�!�چy�F���[m ƿ �Ĕu� :��N�d�M�Y�� F��v��l���؉;)l���6l�B��t.��������:l�R��� ���]�4b3Age����~m}�F��,w�S������/ׁ8.���a���zS# X,6W�F�0�t�"j�n^�oS�R�ؠd �o=FT㒢�8J���>�̦�@�W:a�'��ۛ~"xj$�괰��nP�݁Po�U)�er}6 �{]�Gx���Ɍ��VR�"�:�!��nt ���"o�NX�еY��� ��9�j貆i��ߞ\�8;�n��d ��"YaX��l���W.i�k���+�Y�.w����`��Z�����1O(V��/� �[-�R�0/ E�� �6XeOܒ�+�G�u��J�^��b��?��k�$iKx�����,�4be^*F�G��̀x쬒a=뚼&!x�@��9n��LH�%A"!WK-�zr� ��vg���������0'`9]?V�Ȳ�����eD�G�P2 ͧ�����x���YN��E3i�C�F�|��'��%�$ŧ��XB�H��t�����_�e�q\��U����*�}ˋt�l��d5?��KC�E��d)q����I�!�A ��?:�X� ��%,�e���G���[����6K��ߊ�ε�_�������Tۊ���:��eڌ�����q��R:��r����|l�]�D X ���F'���*N��1m�#@k����@��l�RU3�{�ۺ�\p��&�n�T�|�k�d���-�����g�-�ڐ�B��W���+������)Q`U��P�u8e�X���iW�Uf�aX[��Rxlm�;��t`��W'�KMG�C�_%(�6(�;�9�� V4�tf�����P��qr|��_��A��v��m��@�b@��$��x�W+"��0x��`�U�|�G� Hkݒ��Ru8&���g�1�+��If䧅4�Mu������&��D�n��ٿ^��_�Vה~��.��z�N�E�UY��\������8�/V��a}�z���xIw�j�)}�،X�;D�Y���kG5��W���E�2q�+�n� vO0ʓl�TXűf���⧠�=�X�TنX�� �'x������=�c����M٪9^����O�w��z�UJ��>Xj{8���xFk��� ے�)����)%��H�J��{�[��x���NX�z�����;�a��ߩ��`�i;�w?�wr��+��w���:��]�d�� �>>>L��E-��O�p�3�j]����}�78]����wi�,� ��Oz�뻺�c��W �����:��K_NM�$����b��vΩ��+��q�Y�O��΅�����8��dP?�� �o6t��JѬ*�iÀ�j��S)^�r����v��ad���u3'�$�����qj#*1��ד|�p������V�d��|�����l�_��<�ۨ�j�P�����6N�p�N\_*���` ���K ���<'��^I�~�Jn�� �8W���,�&�ȖuN,�C�m��2F��D�6� �a[�ii�kh{C,w��z[_����D[�bX:ժ��+���jX^�^���<F߭���� Ҍ�6��`� ��-�3���p�ݑ�^��]�T܃8��ì�w[:2�ի�?♢�3���������ɾ�Z�v�V^���y�� g�y�������Ov{�P<8��'����)!w�dT�2N��i�k���,҂e��� Y<��سi߬�� `�?��p= ��V����j���_�>�Yƴ��N�_F��r�� E���U�qL��F)��-`��iO�)�����S\���߁��y��P��K��me%�c�W���)�f���i� �R\��u7�_��RA����� n�/CD�F�{w~��G��|�$�!�3��?�W*f� )�����h����� �j�X�~��.�,��'�����0s�b�� �p�I��wS�d���ط�&,Iϣ���Ҿ�.\���Zh�Ry��:UXňED��KX~P^�n�,5\�|�ViixߤW����临lEg6W8�e7�A�n�ƕ���M�nW���p��X���Z��|kl��>4����t�I�# �?` ����r��� Kؔ����];d��Ov�T�#��Kr����2C�6*va�2��V�ƅj ړ P����Y�����N�c �Ɯ�±Y�|�Q�%�?#���5 I�q0���JV�V�F����� ��n�^I$�2���Z�d��� ��J���G=�0T h[�� ���*)�Q�o{k�xRڿf�K�d�bJID��O>�W���|�����Mp�GhF���ԕ�� ���I��y�՞�m�L�7�ն���n�xj-��a5F�*!��a(�+�J;Y]by�΅f�0l1��O82ab��t������v{����v;���q�5���� X�c��P�:B#�t��]�[V:����l���i�l$�CÐ��C��|3�J�R�Z���z��;��Ÿ����t��s0��N����&�?Ox��N�Nl�DVŲ� ���|-*� ��^y0�|��\.��/�1�x����?~���_.��i�n��Ϫ_W��I���t�|_��;\JMŚ���jh�6Z�m�&�5 mUW2İ��7��7�Bὖ�3���,�U�6U�J����V��jx�e�=0����o��6���/ �f#��Ẅe{YNW��FG�����:I1J �B���D��Q�l(�H���\{~�P6HU��̓|�� ��=H)�A�l tQ ����lH1�Q�A���7��a�$����9��rX#��-��=���#t�C�`+i!�P:,�i)� C,9 �ɲ�J�KǬ���n�zx5���U��� 2�@8�yqf5����A)�9�y����l9�f�>D7R�<