\ No newline at end of file diff --git a/images/documentation.png b/images/documentation.png new file mode 100644 index 0000000..0f8ed16 Binary files /dev/null and b/images/documentation.png differ diff --git a/images/features.jpg b/images/features.jpg new file mode 100644 index 0000000..71699ae Binary files /dev/null and b/images/features.jpg differ diff --git a/images/rating.png b/images/rating.png new file mode 100644 index 0000000..aabfe71 Binary files /dev/null and b/images/rating.png differ diff --git a/images/support.png b/images/support.png new file mode 100644 index 0000000..9eecefd Binary files /dev/null and b/images/support.png differ diff --git a/inc/customize/fabify-premium.php b/inc/customize/fabify-premium.php new file mode 100644 index 0000000..9895c58 --- /dev/null +++ b/inc/customize/fabify-premium.php @@ -0,0 +1,62 @@ +add_section( + 'upgrade_premium', + array( + 'title' => __('Upgrade to Premium','fabify'), + 'description' =>'', + ) + ); + + /*========================================= + Buttons + =========================================*/ + + class WP_Buttons_Customize_Control extends WP_Customize_Control { + public $type = 'upgrade_premium'; + + function render_content() { + ?> +
+ +
+
+
    +
  • + +
  • + +
  • +
+
+ add_setting( + 'premium_info_buttons', + array( + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_text', + ) + ); + + $wp_customize->add_control( new WP_Buttons_Customize_Control( $wp_customize, 'premium_info_buttons', array( + 'section' => 'upgrade_premium', + 'setting' => 'premium_info_buttons', + )) + ); +} +add_action( 'customize_register', 'fabify_premium_setting',999 ); +?> \ No newline at end of file diff --git a/inc/customize/specia-features.php b/inc/customize/specia-features.php new file mode 100644 index 0000000..adc0cda --- /dev/null +++ b/inc/customize/specia-features.php @@ -0,0 +1,155 @@ +add_panel( + 'features_panel', + array( + 'priority' => 128, + 'capability' => 'edit_theme_options', + 'title' => __('Features Section', 'fabify'), + ) + ); + + // Features Settings Section // + $wp_customize->add_section( + 'features_setting', + array( + 'priority' => 1, + 'title' => __('Settings','fabify'), + 'panel' => 'features_panel', + ) + ); + + $wp_customize->add_setting( + 'hide_show_features' , + array( + 'default' => 'on', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_select', + ) + ); + + $wp_customize->add_control( + 'hide_show_features' , + array( + 'label' => __( 'Hide / Show Section', 'fabify' ), + 'section' => 'features_setting', + 'settings' => 'hide_show_features', + 'type' => 'radio', + 'choices' => + array( + 'on' => __( 'Show', 'fabify' ), + 'off' => __( 'Hide', 'fabify' ) + ) + ) + ); + + // Features Header Section // + $wp_customize->add_section( + 'features_header', + array( + 'priority' => 2, + 'title' => __('Header','fabify'), + 'panel' => 'features_panel', + ) + ); + + // Features Title // + $wp_customize->add_setting( + 'features_title', + array( + 'default' => '', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_html', + ) + ); + + $wp_customize->add_control( + 'features_title', + array( + 'label' => __('Section Title','fabify'), + 'section' => 'features_header', + 'settings' => 'features_title', + 'type' => 'text', + ) + ); + + // Features Description // + $wp_customize->add_setting( + 'features_description', + array( + 'default' => '', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_text', + ) + ); + + $wp_customize->add_control( + 'features_description', + array( + 'label' => __('Section Description','fabify'), + 'section' => 'features_header', + 'settings' => 'features_description', + 'type' => 'textarea', + ) + ); + + // Features Background Section // + $wp_customize->add_section( + 'features_background', + array( + 'priority' => 3, + 'title' => __('Background','fabify'), + 'panel' => 'features_panel', + ) + ); + + // Background Image // + $wp_customize->add_setting( + 'features_background_setting' , + array( + 'default' => '', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_url', + ) + ); + + $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize , 'features_background_setting' , + array( + 'label' => __( 'Background Image', 'fabify' ), + 'section' => 'features_background', + 'settings' => 'features_background_setting', + ) + )); + + $wp_customize->add_setting( + 'features_background_position' , + array( + 'default' => 'fixed', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_select', + ) + ); + + $wp_customize->add_control( + 'features_background_position' , + array( + 'label' => __( 'Image Position', 'fabify' ), + 'section' => 'features_background', + 'settings' => 'features_background_position', + 'type' => 'radio', + 'choices' => + array( + 'fixed'=> __( 'Fixed', 'fabify' ), + 'scroll' => __( 'Scroll', 'fabify' ) + ) + ) + ); + +} + +add_action( 'customize_register', 'fabify_features_setting' ); +?> \ No newline at end of file diff --git a/inc/customize/specia-header-section.php b/inc/customize/specia-header-section.php new file mode 100644 index 0000000..96b0ffe --- /dev/null +++ b/inc/customize/specia-header-section.php @@ -0,0 +1,115 @@ +add_panel( + 'header_section', + array( + 'priority' => 127, + 'capability' => 'edit_theme_options', + 'title' => __('Header Section', 'fabify'), + ) + ); + + + /*========================================= + Header Cart & Button + =========================================*/ + $wp_customize->add_section( + 'cart_button', + array( + 'priority' => 4, + 'title' => __('Header Cart & Button','fabify'), + 'description' =>'', + 'panel' => 'header_section', + ) + ); + + $wp_customize->add_setting( + 'header_cart' , + array( + 'default' => 'on', + 'capability' => 'edit_theme_options', + 'sanitize_callback' => 'specia_sanitize_select', + ) + ); + + $wp_customize->add_control( + 'header_cart' , + array( + 'label' => __( 'Hide/ Show Header Cart', 'fabify' ), + 'section' => 'cart_button', + 'settings' => 'header_cart', + 'type' => 'radio', + 'choices' => + array( + 'on' => 'Show', + 'off' => 'Hide' + ) + ) + ); + + $wp_customize->add_setting( + 'button_icon', + array( + 'default' => 'fa-clock-o', + 'sanitize_callback' => 'sanitize_text_field', + 'capability' => 'edit_theme_options', + ) + ); + + $wp_customize->add_control( + 'button_icon', + array( + 'label' => __('Button Icon','fabify'), + 'section' => 'cart_button', + 'settings'=> 'button_icon', + 'type' => 'text', + 'description' => sprintf(__( "Want to get more icons Click Here", "fabify" )), + ) + ); + + $wp_customize->add_setting( + 'button_label', + array( + 'default' => __( 'Book Now', 'fabify' ), + 'sanitize_callback' => 'sanitize_text_field', + 'capability' => 'edit_theme_options', + ) + ); + + $wp_customize->add_control( + 'button_label', + array( + 'label' => __('Button Label','fabify'), + 'section' => 'cart_button', + 'settings'=> 'button_label', + 'type' => 'text' + ) + ); + + $wp_customize->add_setting( + 'button_url', + array( + 'default' => '', + 'sanitize_callback' => 'specia_sanitize_url', + 'capability' => 'edit_theme_options', + ) + ); + + $wp_customize->add_control( + 'button_url', + array( + 'label' => __('Button URL','fabify'), + 'section' => 'cart_button', + 'settings'=> 'button_url', + 'type' => 'text' + ) + ); + +} + +add_action( 'customize_register', 'fabify_header_setting' ); +?> \ No newline at end of file diff --git a/js/custom.js b/js/custom.js new file mode 100644 index 0000000..1195bfe --- /dev/null +++ b/js/custom.js @@ -0,0 +1,148 @@ +/* +* Slider Script +*/ +jQuery(document).ready(function() { + var owl = jQuery('.slider-version-one'); + owl.owlCarousel({ + nav: owl.children().length > 1, + navText: ["",""], + loop: owl.children().length > 1, + autoplayTimeout: 5000, + margin: 0, + animateIn: "bounceIn", + animateOut: "bounceOut", + autoplay: 7000, + items:1, + smartSpeed:450, + autoHeight: true, + responsive: { + 0: { + items: 1 + }, + 600: { + items: 1 + }, + 1000: { + items: 1 + } + } + }) +}) + +/* +Text Rotator Function +*/ +jQuery(document).ready(function(){ + jQuery(".demo1 .rotate").textrotator({ + animation: "fade", + speed: 1000 + }); +}); + + +/* +Sticky Header Function +*/ + +jQuery(function() { + jQuery('a.page-scroll').bind('click', function(event) { + var $anchor = $(this); + var nav_height = $('.navbar').innerHeight(); + jQuery('html, body').stop().animate({ + scrollTop: $($anchor.attr('href')).offset().top - nav_height + }, 1500, 'easeInOutExpo'); + event.preventDefault(); + }); + jQuery('body').scrollspy({ + target: '.sticky-nav', + offset: 60 + }) +}); +jQuery(document).ready(function() { + + jQuery(window).load(function(){ + jQuery(".sticky-nav").sticky({ topSpacing: 0 }); + }); + +}); + +/* +Top Scroller Function +*/ +jQuery(".top-scroll").hide(); +jQuery(function () { +jQuery(window).scroll(function () { + if (jQuery(this).scrollTop() > 500) { + jQuery('.top-scroll').fadeIn(); + } else { + jQuery('.top-scroll').fadeOut(); + } +}); +jQuery('a.top-scroll').click(function () { + jQuery('body,html').animate({ + scrollTop: 0 + }, 800); + return false; +}); +}); + +/* +//wow-animated +*/ +jQuery(document).ready(function() { +wow = new WOW({ + boxClass: 'wow', // animated element css class (default is wow) + animateClass: 'animated', // animation css class (default is animated) + offset: 100, // distance to the element when triggering the animation (default is 0) + mobile: true, // trigger animations on mobile devices (true is default) + live: true // consatantly check for new WOW elements on the page (true is default) +}) +wow.init(); +}); + +/* +// Search +*/ +jQuery(document).ready(function(){ + var submitIcon = jQuery('.searchbox-icon'); + var inputBox = jQuery('.searchbox-input'); + var searchBox = jQuery('.searchbox'); + var isOpen = false; + submitIcon.click(function(){ + if(isOpen == false){ + searchBox.addClass('searchbox-open'); + inputBox.focus(); + isOpen = true; + } else { + searchBox.removeClass('searchbox-open'); + inputBox.focusout(); + isOpen = false; + } + }); + + submitIcon.mouseup(function(){ + return false; + }); + + searchBox.mouseup(function(){ + return false; + }); + + jQuery(document).mouseup(function(){ + if(isOpen == true){ + jQuery('.searchbox-icon').css('display','block'); + submitIcon.click(); + } + }); +}); + +function buttonUp(){ + var inputVal = jQuery('.searchbox-input').val(); + inputVal = jQuery.trim(inputVal).length; + if( inputVal !== 0){ + jQuery('.searchbox-icon').css('display','none'); + } else { + jQuery('.searchbox-input').val(''); + jQuery('.searchbox-icon').css('display','block'); + } +} \ No newline at end of file diff --git a/languages/fabify.pot b/languages/fabify.pot new file mode 100644 index 0000000..b2951f5 --- /dev/null +++ b/languages/fabify.pot @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Project-Id-Version: Fabify\n" +"POT-Creation-Date: 2018-09-05 17:12+0530\n" +"PO-Revision-Date: 2018-09-05 17:12+0530\n" +"Last-Translator: \n" +"Language-Team: Specia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.5\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" +"X-Poedit-Basepath: C:\\xampp\\htdocs\\work\\free\\wp-content\\themes" +"\\fabify\n" +"X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\work\\free\\wp-content\\themes" +"\\fabify\n" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/footer.php:27 +msgid "Your Copyright Text" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:7 +msgid "Upgrade to Premium" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:23 +msgid "Premium Demo" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:25 +msgid "View Details" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:27 +msgid "Buy Now" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:29 +msgid "Our Themes" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/fabify-premium.php:31 +msgid "Support Center" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:12 +msgid "Features Section" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:21 +msgid "Settings" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:38 +msgid "Hide / Show Section" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:44 +msgid "Show" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:45 +msgid "Hide" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:55 +msgid "Header" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:73 +msgid "Section Title" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:93 +msgid "Section Description" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:105 +msgid "Background" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:122 +msgid "Background Image" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:140 +msgid "Image Position" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:146 +msgid "Fixed" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-features.php:147 +msgid "Scroll" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:12 +msgid "Header Section" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:24 +msgid "Header Cart & Button" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:42 +msgid "Hide/ Show Header Cart" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:66 +msgid "Button Icon" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:70 +msgid "" +"Want to get more icons Click Here" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:77 +msgid "Book Now" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:86 +msgid "Button Label" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/inc/customize/specia-header-section.php:105 +msgid "Button URL" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:10 +#, php-format +msgid "Daily Archives: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:14 +#, php-format +msgid "Monthly Archives: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:18 +#, php-format +msgid "Yearly Archives: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:22 +#, php-format +msgid "Category Archives: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:26 +#, php-format +msgid "Tag Archives: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:30 +msgid "Error 404" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-breadcrumb.php:34 +#, php-format +msgid "Author: %s" +msgstr "" + +#: C:\xampp\htdocs\work\free\wp-content\themes\fabify/sections/specia-navigation.php:73 +msgid "Toggle navigation" +msgstr "" diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..ebe62b8 --- /dev/null +++ b/readme.txt @@ -0,0 +1,191 @@ +=== Fabify === + +Contributors: specia +Requires at least: WordPress 4.4 +Tested up to: WordPress 4.9.8 +Stable tag: 1.0.32 +Version: 1.0.32 +License: GPLv2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Tags: one-column, two-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, custom-logo, featured-image-header, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce, education, entertainment, food-and-drink, photography, portfolio, editor-style, grid-layout + +Fabify WordPress Theme, Copyright 2018 Specia Theme +Fabify is distributed under the terms of the GNU GPL + +=== Description === + +Fabify is a trending WordPress theme with lots of powerful features, instantly giving a professional look to your online presence. It fits for business, portfolio, food & restaurant, gym & fitness, spa salon, medical practitioner & hospitals, landing pages, product pages, corporate business, digital agency, product showcase, financial advisor, accountant, law firm, wealth advisor, photography, personal, and any eCommerce stores. Fabify premium version provides you more than 10 different designs and supports popular plugins WPML, Polylang, WooCommerce, Contact Form 7, Revolution Slider, Elementor, Visual Composer, WP-Forms, Ninja Forms, Jetpack, WP-Featherlight, Give (WordPress Donation Plugin), Gravity Forms, Yoast SEO and many more. View the demo of Fabify Premium https://demo.speciatheme.com/pro/?theme=fabify + + +== 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. + + +=== Frequently Asked Questions === + +1. Get Support - https://specia.ticksy.com/ + + +## Credit & Copyright + +Fabify WordPress Theme is child theme of Specia WordPress Theme, Copyright 2018 Specia Theme +Specia is distributed under the terms of the GNU General Public License v2 + +=== Copyright === + +i) Package Structure +Based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) + +ii) Font Awesome +Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome +License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) +Source: http://fontawesome.io + +iii) Bootstrap Framework +Bootstrap (http://getbootstrap.com/) +Copyright (c) 2011-2014 Twitter, Inc +Licensed - https://github.com/twbs/bootstrap/blob/master/LICENSE + +iv) Owl Carousel 2 +Owl Carousel 2 - by @David Deutsch - https://github.com/OwlCarousel2 +Licensed - https://github.com/OwlCarousel2/OwlCarousel2/blob/develop/LICENSE + +v) Simple Text Rotator +Simple Text Rotator - https://github.com/peachananr/simple-text-rotator +Licensed - https://github.com/peachananr/simple-text-rotator/blob/master/LICENSE + +vi) Animate Css +Animate Css by @Daniel Eden - https://daneden.me/ +License - https://github.com/daneden/animate.css/blob/master/LICENSE (MIT License) +Source: https://github.com/daneden/animate.css + +vii) Sticky Js +Sticky Js by @Anthony Garand - http://stickyjs.com/ +License - https://github.com/garand/sticky/blob/master/LICENSE.md +Source: http://stickyjs.com/ + +viii) Modernizr Custom +Modernizr Custom +License - MIT & BSD +Source: http://modernizr.com/download/#-touch-shiv-cssclasses-teststyles-prefixes-load + +ix) WOW Js +WOW Js by @matthieu +License - GNU GPL license v3 +Source: https://github.com/matthieua/WOW + +x) Screenshot Image +Screenshot Image +URL: https://www.pexels.com/photo/group-of-people-in-dress-suits-776615/ +Source: https://www.pexels.com/ +License: CC0 License + +xi) Image Folder Images +All other Images have been used in images folder, Created by Specia Theme. Also they are GPL Licensed and free to use and free to redistribute further. + +xii) Admin Detail Image +Admin Detail Image +URL: https://pixabay.com/en/london-cityscape-england-1081820/ +Source: http://pixabay.com +License: CC0 Public Domain + +================================================================================================= + +------------------------------------------------------------------------------------------------------ + +=== Changelog === +@version 1.0.31 +* Custom Header added to frontend. + +@version 1.0.31 +* Tags & Description Changed + +@version 1.0.30 +* Feature image added + +@version 1.0.29 +* Added Theme Tag (grid-layout) + +@version 1.0.28 +* Improve Screenshot + +@version 1.0.27 +* Updated Readme File + +@version 1.0.26 +* Updated Premium Themes Link + +@version 1.0.25 +* Added Documentation, Support & Review Buttons + +@version 1.0.24 +* Cart Error Resolved + +@version 1.0.23 +* Updated Theme Description + +@version 1.0.22 +* Updated Theme Description + +@version 1.0.21 +* Added Premium Themes Link + +@version 1.0.20 +* Code beautify + +@version 1.0.19 +* Added Premium Theme Button + +@version 1.0.18 +* Theme Description Updated + +@version 1.0.17 +* Copyright Issue Resolved + +@version 1.0.16 +* Slider Animation Changed + +@version 1.0.15 +* WordPress 4.9.8 Compatibility Tested. + +@version 1.0.14 +* Added Portfolio Features + +@version 1.0.13 +* WordPress 4.9.7 Compatibility Tested. + +@version 1.0.12 +* Fixed, Header button focus color issue. + +@version 1.0.11 +* Update code for security purpose + +@version 1.0.10 +* Added Social Media Icons + +@version 1.0.9 +* Code beautify + +@version 1.0.8 +* Screenshot changed + +@version 1.0.7 +* Added Feature Widget Support to Features Section. + +@version 1.0.6 +* Added Theme Tag + +@version 1.0.4 +* Added Theme URI + +@version 1.0.3 +* Resolved Theme Review Issues. + +@version 1.0.2 +* Resubmit on WordPress.org + +@version 1.0.1 +* Submit on WordPress.org \ No newline at end of file diff --git a/screenshot.jpg b/screenshot.jpg new file mode 100644 index 0000000..b170175 Binary files /dev/null and b/screenshot.jpg differ diff --git a/search.php b/search.php new file mode 100644 index 0000000..ca3aa92 --- /dev/null +++ b/search.php @@ -0,0 +1,62 @@ + + + + +
+ +
+
+
+
+ +
+ + + + +
+
+
+ + +
+
+
+
+
+

+ +

+
+
+ + + + +
+
+
+ + +
diff --git a/sections/specia-call-action.php b/sections/specia-call-action.php new file mode 100644 index 0000000..a5f52a2 --- /dev/null +++ b/sections/specia-call-action.php @@ -0,0 +1,33 @@ + +
+
+
+
+ +
+ have_posts() ) + { while( $aboutusquery1->have_posts() ) { $aboutusquery1->the_post(); + ?> +

+ + +
+ + +
+ +
+ +
+
+
+
+
+ diff --git a/sections/specia-features.php b/sections/specia-features.php new file mode 100644 index 0000000..df55467 --- /dev/null +++ b/sections/specia-features.php @@ -0,0 +1,49 @@ + + +
+ + +
+ + +
+
+ +
+
+ +

+ + + +

+ +
+
+ + '; + dynamic_sidebar( 'specia_feature_widget' ); + echo '
'; + endif; + ?> + +
+