first commit
147
wp-content/plugins/copy-delete-posts/banner/views/index.php
Normal file
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Main renderer for the Carousel
|
||||
*
|
||||
* @category Child Plugin
|
||||
* @author iClyde <kontakt@iclyde.pl>
|
||||
*/
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
?>
|
||||
|
||||
<section class="ci-carrinis-wrapper">
|
||||
<section class="ci-carrinis" id="carrinis">
|
||||
<h1>Like this plugin?</h1>
|
||||
<h1>Then you'll LOVE our others too :)</h1>
|
||||
<div class="ci-carousel">
|
||||
<?php $this->_include('static/tabs'); ?>
|
||||
<div class="ci-project-content">
|
||||
<?php
|
||||
|
||||
$bmi_free = $this->is_plugin_installed($this->bmi_slug);
|
||||
$bmi_pro = $this->is_plugin_installed($this->bmi_premium);
|
||||
$bmi_state = (!$bmi_free || (!$bmi_free && $bmi_pro)) ? 'install' : (($bmi_free && !$bmi_pro) ? 'upgrade' : 'already-installed')
|
||||
|
||||
?>
|
||||
<div class="ci-project ci-project-BackupMigration <?php echo 'ci-'.$bmi_state.'-state-visible'; ?>">
|
||||
<?php
|
||||
|
||||
if (!$bmi_free || (!$bmi_free && $bmi_pro)) {
|
||||
$this->_include('projects/bmi/install');
|
||||
} elseif ($bmi_free && !$bmi_pro) {
|
||||
$this->_include('projects/bmi/upgrade');
|
||||
} elseif ($bmi_free && $bmi_pro) {
|
||||
$this->_include('projects/bmi/installed');
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/bmi/imgs/background-images.png'); ?>" class="ci-main-image">
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
$mpu_plugin = $this->is_plugin_installed($this->mpu_slug);
|
||||
$mpu_state = $mpu_plugin ? 'already-installed' : 'install';
|
||||
|
||||
?>
|
||||
<div class="ci-project ci-project-MyPopups <?php echo 'ci-'.$mpu_state.'-state-visible'; ?>">
|
||||
<?php
|
||||
|
||||
if ($mpu_plugin) {
|
||||
$this->_include('projects/mpu/installed');
|
||||
} else {
|
||||
$this->_include('projects/mpu/install');
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/mpu/imgs/background-images.png'); ?>" class="ci-main-image">
|
||||
<img src="<?php $this->_asset('/projects/mpu/imgs/background-texture-green.png'); ?>" class="ci-secondary-image">
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
$cdp_free = $this->is_plugin_installed($this->cdp_slug);
|
||||
$cdp_pro = $this->is_plugin_installed($this->cdp_premium);
|
||||
$cdp_state = (!$cdp_free || (!$cdp_free && $cdp_pro)) ? 'install' : (($cdp_free && !$cdp_pro) ? 'upgrade' : 'already-installed');
|
||||
|
||||
?>
|
||||
<div class="ci-project ci-project-CopyDeletePosts <?php echo 'ci-'.$cdp_state.'-state-visible'; ?>">
|
||||
<?php
|
||||
|
||||
if (!$cdp_free || (!$cdp_free && $cdp_pro)) {
|
||||
$this->_include('projects/cdp/install');
|
||||
} elseif ($cdp_free && !$cdp_pro) {
|
||||
$this->_include('projects/cdp/upgrade');
|
||||
} elseif ($cdp_free && $cdp_pro) {
|
||||
$this->_include('projects/cdp/installed');
|
||||
}
|
||||
|
||||
?>
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/cdp/imgs/secondary-background-image.svg'); ?>" class="ci-secondary-image">
|
||||
<img src="<?php $this->_asset('/projects/cdp/imgs/main-background-image.png'); ?>" class="ci-main-image">
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
$redi_plugin = $this->is_plugin_installed($this->redi_slug);
|
||||
$redi_state = $redi_plugin ? 'already-installed' : 'install';
|
||||
|
||||
?>
|
||||
<div class="ci-project ci-project-redRed ci-<?php echo $redi_state; ?>-state-visible">
|
||||
<?php
|
||||
if ($redi_state == 'install') {
|
||||
$this->_include('projects/red/install');
|
||||
} else {
|
||||
$this->_include('projects/red/installed');
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<div class="ci-project ci-project-TasteWP ci-install-state-visible">
|
||||
<?php $this->_include('projects/twp/install'); ?>
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/background-image-1.svg'); ?>">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/background-image-2.svg'); ?>">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/background-image-3.svg'); ?>">
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
$usm_free = $this->is_plugin_installed($this->usm_slug);
|
||||
$usm_pro = $this->is_plugin_installed($this->usm_premium);
|
||||
$usm_state = (!$usm_free || (!$usm_free && $usm_pro)) ? 'install' : (($usm_free && !$usm_pro) ? 'upgrade' : 'already-installed');
|
||||
|
||||
?>
|
||||
<div class="ci-project ci-project-SocialShare <?php echo 'ci-'.$usm_state.'-state-visible'; ?>">
|
||||
<?php
|
||||
|
||||
if (!$usm_free || (!$usm_free && $usm_pro)) {
|
||||
$this->_include('projects/usm/install');
|
||||
$this->_include('projects/usm/part-install');
|
||||
} elseif ($usm_free && !$usm_pro) {
|
||||
$this->_include('projects/usm/upgrade');
|
||||
$this->_include('projects/usm/part-upgrade');
|
||||
} elseif ($usm_free && $usm_pro) {
|
||||
$this->_include('projects/usm/part-install');
|
||||
$this->_include('projects/usm/installed');
|
||||
}
|
||||
|
||||
?>
|
||||
</div>
|
||||
<div class="ci-project ci-project-followIt ci-install-state-visible">
|
||||
<?php $this->_include('projects/fit/install'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-all-projects">
|
||||
<a class="ci-see-all-projects" href="https://inisev.com/?utm_source=plugin_footer&utm_campaign=CDP&utm_medium=carrousel" target="_blank">See all projects</a>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 871 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="27" height="28" viewBox="0 0 27 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.5991 0.648193C11.8006 0.648193 10.0877 1.00301 8.53385 1.63922V14.9264C8.68067 17.7894 11.0542 20.0651 13.9539 20.0651C15.7035 20.0651 17.2696 19.2331 18.2606 17.9362C18.0159 19.3065 17.3552 20.6156 16.303 21.6801C14.7859 23.1972 12.6081 24.0414 10.467 23.5887C10.1856 23.5276 9.9164 23.4541 9.65946 23.3563C8.05669 22.7812 6.68637 21.5822 5.74428 20.1996C4.6309 18.5602 4.03139 16.6148 4.03139 14.6327C4.03139 14.4982 4.03139 14.3758 4.04362 14.2412V4.67349C1.68228 7.08378 0.226318 10.375 0.226318 14.021C0.226318 21.4109 6.20921 27.3938 13.5991 27.3938C20.989 27.3938 26.9719 21.4109 26.9719 14.021C26.9719 6.63108 20.9768 0.648193 13.5991 0.648193Z" fill="#0F9990"/>
|
||||
<path d="M14.896 24.5186C15.8014 24.1026 16.6456 23.5276 17.3919 22.7812C19.3984 20.7747 20.2304 17.6181 19.79 14.8407C19.3862 12.3326 17.3307 9.17596 14.4678 9.23714C14.4678 9.70207 14.4678 10.1792 14.4678 10.6442C14.4678 10.8399 14.3332 11.8432 14.4678 11.9778C14.3943 11.8921 9.76953 7.26731 9.76953 7.26731L14.4678 2.56909V4.73468C19.7043 5.00385 23.8764 9.34725 23.8764 14.645C23.8764 19.7959 19.9245 24.0414 14.896 24.5186Z" fill="#55BDBD"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg width="27" height="28" viewBox="0 0 27 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.5991 0.648193C11.8006 0.648193 10.0877 1.00301 8.53385 1.63922V14.9264C8.68067 17.7894 11.0542 20.0651 13.9539 20.0651C15.7035 20.0651 17.2696 19.2331 18.2606 17.9362C18.0159 19.3065 17.3552 20.6156 16.303 21.6801C14.7859 23.1972 12.6081 24.0414 10.467 23.5887C10.1856 23.5276 9.9164 23.4541 9.65946 23.3563C8.05669 22.7812 6.68637 21.5822 5.74428 20.1996C4.6309 18.5602 4.03139 16.6148 4.03139 14.6327C4.03139 14.4982 4.03139 14.3758 4.04362 14.2412V4.67349C1.68228 7.08378 0.226318 10.375 0.226318 14.021C0.226318 21.4109 6.20921 27.3938 13.5991 27.3938C20.989 27.3938 26.9719 21.4109 26.9719 14.021C26.9719 6.63108 20.9768 0.648193 13.5991 0.648193Z" fill="white"/>
|
||||
<path d="M14.896 24.5186C15.8014 24.1026 16.6456 23.5276 17.3919 22.7812C19.3984 20.7747 20.2304 17.6181 19.79 14.8407C19.3862 12.3326 17.3307 9.17596 14.4678 9.23714C14.4678 9.70207 14.4678 10.1792 14.4678 10.6442C14.4678 10.8399 14.3332 11.8432 14.4678 11.9778C14.3943 11.8921 9.76953 7.26731 9.76953 7.26731L14.4678 2.56909V4.73468C19.7043 5.00385 23.8764 9.34725 23.8764 14.645C23.8764 19.7959 19.9245 24.0414 14.896 24.5186Z" fill="#55BDBD"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://backupbliss.com" target="_blank">
|
||||
<div class="ci-project-logo-element">
|
||||
<img src="<?php $this->_asset('/projects/bmi/imgs/big-colored-logo.png'); ?>">
|
||||
<span><b>Backup</b> &<br>Clone & Migration</span>
|
||||
</div>
|
||||
</a>
|
||||
<img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>" class="ci-rating" >
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Create backups & migrate your site</li>
|
||||
<li>Don't lose your work / switch to another host with ease</li>
|
||||
<li><b>Free</b> <span class="ci-light-font">(optional upgrade to <a href="https://backupbliss.com" target="_blank">premium</a>)</span></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<button class="ci-inisev-install-plugin" data-slug="bmi">Install plugin now</button>
|
||||
<span>(from <a href="https://wordpress.org/plugins/backup-backup/" target="_blank">WP directory</a>)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-already-installed-state">
|
||||
<div class="ci-already-installed-heading">
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.7975 5.74273C40.1757 5.1268 39.1785 5.1268 38.5567 5.74273L19.5688 24.6779L12.7232 17.24C12.1307 16.5947 11.1276 16.5536 10.4824 17.1461C9.843 17.7385 9.802 18.7416 10.3945 19.381L18.3603 28.0332C18.6478 28.35 19.0584 28.5318 19.4866 28.5436C19.4984 28.5436 19.51 28.5436 19.5218 28.5436C19.9441 28.5436 20.343 28.3793 20.6422 28.0802L40.7916 7.98351C41.4134 7.36759 41.4134 6.36451 40.7975 5.74273ZM40.4162 19.4162C39.5421 19.4162 38.8324 20.126 38.8324 21C38.8324 30.8313 30.8313 38.8324 21 38.8324C11.1687 38.8324 3.16761 30.8313 3.16761 21C3.16761 11.1687 11.1687 3.16758 21 3.16758C21.874 3.16758 22.5838 2.45783 22.5838 1.58381C22.5838 0.709784 21.874 0 21 0C9.42069 0 0 9.42067 0 21C0 32.5793 9.42069 42 21 42C32.5793 42 42 32.5793 42 21C42 20.126 41.2902 19.4162 40.4162 19.4162Z" fill="#6BB4A7"/>
|
||||
</svg>
|
||||
<p><span class="ci-colored-part">Already installed –</span> now <b>earn affiliate commissions!</b></p>
|
||||
</div>
|
||||
<p>If you share this plugin, you’ll earn 40% (!) of every sale you helped to generate!</p>
|
||||
<p>Just go to <a href="https://sellcodes.com/oZxnXtc2" target="_blank">Sellcodes</a>, click on “Share & earn cash” (next to the title) and follow the steps :)</p>
|
||||
<div class="ci-check-it-out-button">
|
||||
<a href="https://sellcodes.com/oZxnXtc2" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-upgrade-state">
|
||||
<h2>Don’t forget to <b>upgrade to premium</b> for the backup plugin :)</h2>
|
||||
<div class="ci-pros-list">
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Unlimited backup size</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Top support</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h2><b>Coming soon:</b></h2>
|
||||
<div class="ci-pros-list">
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-timer-list">
|
||||
<li>External storage</li>
|
||||
<li>Encryption</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-timer-list">
|
||||
<li>Smart exclusion rules</li>
|
||||
<li class="ci-no-clock ci-fancy-signature">...and so <a href="https://backupbliss.com" target="_blank" class="ci-green-text">much more!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-submit-button-row">
|
||||
<div class="ci-submit-button-wrapper">
|
||||
<a href="https://backupbliss.com" target="_blank" class="ci-button-link ci-round-button ci-no-arrow">Upgrade now</a>
|
||||
<div class="ci-learn-more-button">
|
||||
<a href="https://backupbliss.com" target="_blank">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 767 B |
@@ -0,0 +1,10 @@
|
||||
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.9344 24.8565H5.78483C2.80349 24.8565 0.372803 22.4101 0.372803 19.4051V8.14839C0.372803 7.67641 0.750377 7.29881 1.22236 7.29881C1.68647 7.29881 2.07191 7.67641 2.07191 8.14839V19.4051C2.07191 21.4661 3.73958 23.1417 5.78483 23.1417H13.9344C14.4064 23.1417 14.7839 23.5271 14.7839 23.9991C14.7839 24.471 14.4064 24.8565 13.9344 24.8565ZM15.4605 0.486572H6.44563C4.84089 0.486572 3.53507 1.80023 3.53507 3.41283V18.5398C3.53507 20.1524 4.84089 21.4661 6.44563 21.4661H17.8046C19.4094 21.4661 20.7073 20.1524 20.7073 18.5398V5.41874L15.4605 0.486572ZM7.79862 6.5358H12.7702C13.2972 6.5358 13.7299 6.96843 13.7299 7.50335C13.7299 8.03826 13.2972 8.47089 12.7702 8.47089H7.79862C7.26371 8.47089 6.83107 8.03826 6.83107 7.50335C6.83107 6.96843 7.26371 6.5358 7.79862 6.5358ZM16.4123 16.8407H7.79862C7.26371 16.8407 6.83107 16.4081 6.83107 15.8732C6.83107 15.3382 7.26371 14.9056 7.79862 14.9056H16.4123C16.9393 14.9056 17.372 15.3382 17.372 15.8732C17.372 16.4081 16.9393 16.8407 16.4123 16.8407ZM16.4123 12.6479H7.79862C7.26371 12.6479 6.83107 12.2153 6.83107 11.6804C6.83107 11.1455 7.26371 10.7128 7.79862 10.7128H16.4123C16.9393 10.7128 17.372 11.1455 17.372 11.6804C17.372 12.2153 16.9393 12.6479 16.4123 12.6479ZM16.6483 6.09529C15.6492 6.09529 14.839 5.27718 14.839 4.27029V1.25746L19.8027 6.09529H16.6483Z" fill="url(#paint0_linear)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="0.974601" y1="-26.8132" x2="22.3862" y2="-25.5071" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00B371"/>
|
||||
<stop offset="0.609375" stop-color="#23D1B7"/>
|
||||
<stop offset="1" stop-color="#00B371"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="483" height="256" viewBox="0 0 483 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.833496 -0.786621H482.254V255.657H252.214L0.833496 -0.786621Z" fill="#6BB4A7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 198 B |
@@ -0,0 +1,11 @@
|
||||
<svg width="21" height="25" viewBox="0 0 21 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.9344 24.8565H5.78483C2.80349 24.8565 0.372803 22.4101 0.372803 19.4051V8.14839C0.372803 7.67641 0.750377 7.29881 1.22236 7.29881C1.68647 7.29881 2.07191 7.67641 2.07191 8.14839V19.4051C2.07191 21.4661 3.73958 23.1417 5.78483 23.1417H13.9344C14.4064 23.1417 14.7839 23.5271 14.7839 23.9991C14.7839 24.471 14.4064 24.8565 13.9344 24.8565ZM15.4605 0.486572H6.44563C4.84089 0.486572 3.53507 1.80023 3.53507 3.41283V18.5398C3.53507 20.1524 4.84089 21.4661 6.44563 21.4661H17.8046C19.4094 21.4661 20.7073 20.1524 20.7073 18.5398V5.41874L15.4605 0.486572ZM7.79862 6.5358H12.7702C13.2972 6.5358 13.7299 6.96843 13.7299 7.50335C13.7299 8.03826 13.2972 8.47089 12.7702 8.47089H7.79862C7.26371 8.47089 6.83107 8.03826 6.83107 7.50335C6.83107 6.96843 7.26371 6.5358 7.79862 6.5358ZM16.4123 16.8407H7.79862C7.26371 16.8407 6.83107 16.4081 6.83107 15.8732C6.83107 15.3382 7.26371 14.9056 7.79862 14.9056H16.4123C16.9393 14.9056 17.372 15.3382 17.372 15.8732C17.372 16.4081 16.9393 16.8407 16.4123 16.8407ZM16.4123 12.6479H7.79862C7.26371 12.6479 6.83107 12.2153 6.83107 11.6804C6.83107 11.1455 7.26371 10.7128 7.79862 10.7128H16.4123C16.9393 10.7128 17.372 11.1455 17.372 11.6804C17.372 12.2153 16.9393 12.6479 16.4123 12.6479ZM16.6483 6.09529C15.6492 6.09529 14.839 5.27718 14.839 4.27029V1.25746L19.8027 6.09529H16.6483Z" fill="url(#paint0_linear)"/>
|
||||
<path d="M13.9344 24.8565H5.78483C2.80349 24.8565 0.372803 22.4101 0.372803 19.4051V8.14839C0.372803 7.67641 0.750377 7.29881 1.22236 7.29881C1.68647 7.29881 2.07191 7.67641 2.07191 8.14839V19.4051C2.07191 21.4661 3.73958 23.1417 5.78483 23.1417H13.9344C14.4064 23.1417 14.7839 23.5271 14.7839 23.9991C14.7839 24.471 14.4064 24.8565 13.9344 24.8565ZM15.4605 0.486572H6.44563C4.84089 0.486572 3.53507 1.80023 3.53507 3.41283V18.5398C3.53507 20.1524 4.84089 21.4661 6.44563 21.4661H17.8046C19.4094 21.4661 20.7073 20.1524 20.7073 18.5398V5.41874L15.4605 0.486572ZM7.79862 6.5358H12.7702C13.2972 6.5358 13.7299 6.96843 13.7299 7.50335C13.7299 8.03826 13.2972 8.47089 12.7702 8.47089H7.79862C7.26371 8.47089 6.83107 8.03826 6.83107 7.50335C6.83107 6.96843 7.26371 6.5358 7.79862 6.5358ZM16.4123 16.8407H7.79862C7.26371 16.8407 6.83107 16.4081 6.83107 15.8732C6.83107 15.3382 7.26371 14.9056 7.79862 14.9056H16.4123C16.9393 14.9056 17.372 15.3382 17.372 15.8732C17.372 16.4081 16.9393 16.8407 16.4123 16.8407ZM16.4123 12.6479H7.79862C7.26371 12.6479 6.83107 12.2153 6.83107 11.6804C6.83107 11.1455 7.26371 10.7128 7.79862 10.7128H16.4123C16.9393 10.7128 17.372 11.1455 17.372 11.6804C17.372 12.2153 16.9393 12.6479 16.4123 12.6479ZM16.6483 6.09529C15.6492 6.09529 14.839 5.27718 14.839 4.27029V1.25746L19.8027 6.09529H16.6483Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="0.974601" y1="-26.8132" x2="22.3862" y2="-25.5071" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00B371"/>
|
||||
<stop offset="0.609375" stop-color="#23D1B7"/>
|
||||
<stop offset="1" stop-color="#00B371"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://wordpress.org/plugins/copy-delete-posts/" target="_blank">
|
||||
<div class="ci-project-logo-element">
|
||||
<img src="<?php $this->_asset('/projects/cdp/imgs/big-colored-logo.png'); ?>">
|
||||
<span>Copy & Delete<br><b>posts</b></span>
|
||||
</div>
|
||||
</a>
|
||||
<img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>" class="ci-rating">
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Copy posts & pages with one click</li>
|
||||
<li>Save a lot of time!</li>
|
||||
<li><b>Free</b> <span class="ci-light-font">(optional upgrade to <a href="https://sellcodes.com/CylMIdJD" target="_blank">premium</a>)</span></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<button class="ci-inisev-install-plugin" data-slug="cdp">Install plugin now</button>
|
||||
<span>(from <a href="https://wordpress.org/plugins/copy-delete-posts/" target="_blank">WP directory</a>)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-already-installed-state">
|
||||
<div class="ci-already-installed-heading">
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.7975 5.74273C40.1757 5.1268 39.1785 5.1268 38.5567 5.74273L19.5688 24.6779L12.7232 17.24C12.1307 16.5947 11.1276 16.5536 10.4824 17.1461C9.843 17.7385 9.802 18.7416 10.3945 19.381L18.3603 28.0332C18.6478 28.35 19.0584 28.5318 19.4866 28.5436C19.4984 28.5436 19.51 28.5436 19.5218 28.5436C19.9441 28.5436 20.343 28.3793 20.6422 28.0802L40.7916 7.98351C41.4134 7.36759 41.4134 6.36451 40.7975 5.74273ZM40.4162 19.4162C39.5421 19.4162 38.8324 20.126 38.8324 21C38.8324 30.8313 30.8313 38.8324 21 38.8324C11.1687 38.8324 3.16761 30.8313 3.16761 21C3.16761 11.1687 11.1687 3.16758 21 3.16758C21.874 3.16758 22.5838 2.45783 22.5838 1.58381C22.5838 0.709784 21.874 0 21 0C9.42069 0 0 9.42067 0 21C0 32.5793 9.42069 42 21 42C32.5793 42 42 32.5793 42 21C42 20.126 41.2902 19.4162 40.4162 19.4162Z" fill="#6BB4A7"/>
|
||||
</svg>
|
||||
<p><span class="ci-colored-part">Already installed –</span> now <b>earn affiliate commissions!</b></p>
|
||||
</div>
|
||||
<p>If you share this plugin, you’ll earn 40% (!) of every sale you helped to generate!</p>
|
||||
<p>Just go to <a href="https://sellcodes.com/CylMIdJD" target="_blank">Sellcodes</a>, click on “Share & earn cash” (next to the title) and follow the steps :)</p>
|
||||
<div class="ci-check-it-out-button">
|
||||
<a href="https://sellcodes.com/CylMIdJD" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-upgrade-state">
|
||||
<h2>Don’t forget to <b>upgrade to premium</b><br/>for the copy posts plugin :)</h2>
|
||||
<div class="ci-pros-list">
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Import & export settings</li>
|
||||
<li>Multisite support</li>
|
||||
<li>Automatic redirects</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Also copy 3rd party infos</li>
|
||||
<li>Auto-delete posts</li>
|
||||
<li class="ci-no-checkmark ci-fancy-signature">...and so <a href="https://sellcodes.com/CylMIdJD" target="_blank" class="ci-green-text">much more!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-submit-button-row">
|
||||
<div class="ci-submit-button-wrapper">
|
||||
<a href="https://wordpress.org/plugins/copy-delete-posts/" target="_blank" class="ci-button-link ci-round-button ci-no-arrow">Upgrade now</a>
|
||||
<div class="ci-learn-more-button">
|
||||
<a href="https://sellcodes.com/CylMIdJD" target="_blank">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<svg width="230" height="254" viewBox="0 0 230 254" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M217.1 231.375L54.353 392.234C28.1974 418.091 -16.5464 399.77 -16.5464 363.199V307.01H-90.7812C-181.653 307.01 -241.807 338.641 -279.582 397.111C-288.392 410.712 -309.584 404.867 -309.584 388.71V307.002C-309.584 187.583 -211.632 90.7717 -90.797 90.7717H-16.5464V41.4968C-16.5464 4.92615 28.1974 -13.3946 54.353 12.47L217.1 173.329C233.32 189.353 233.32 215.343 217.108 231.375C217.1 231.375 217.1 231.383 217.1 231.383" fill="#F5F9FC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 553 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="192" height="171" viewBox="0 0 192 171" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.8524 191.986L193.355 14.5681C222.216 -13.9474 271.562 6.25337 271.562 46.5842V108.563H353.451C453.684 108.563 520.029 73.668 561.705 9.18749C571.42 -5.82151 594.798 0.628917 594.798 18.4462V108.571C594.798 240.285 486.746 347.063 353.466 347.063H271.562V401.412C271.562 441.75 222.216 461.951 193.355 433.428L13.8524 256.002C-4.04355 238.327 -4.04356 209.669 13.8367 191.986C13.8445 191.978 13.8445 191.97 13.8524 191.97" fill="#06B04E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 559 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="176" height="133" viewBox="0 0 176 133" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M163.609 -40.3742L0.861816 120.485C-25.2938 146.342 -70.0376 128.021 -70.0376 91.4501V35.2608H-144.272C-235.145 35.2608 -295.299 66.8914 -333.073 125.362C-341.883 138.963 -363.075 133.118 -363.075 116.961V35.2529C-363.075 -84.1662 -265.123 -180.977 -144.288 -180.977H-70.0376V-230.252C-70.0376 -266.823 -25.2938 -285.144 0.861816 -259.279L163.609 -98.42C179.829 -82.3963 179.829 -56.4059 163.617 -40.3742C163.609 -40.3742 163.609 -40.3664 163.609 -40.3664" fill="#06B04E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 590 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="299" height="211" viewBox="0 0 299 211" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.2141 -80.6894L221.038 -283.224C253.959 -315.783 310.274 -292.719 310.274 -246.677V-175.92H403.703C518.072 -175.92 593.778 -215.755 641.322 -289.368C652.406 -306.501 679.088 -299.138 679.088 -278.796V-175.912C679.088 -25.5463 555.799 96.3507 403.719 96.3507H310.274V158.393C310.274 204.442 253.959 227.506 221.038 194.94L16.2141 -7.59531C-4.19908 -27.7804 -4.20696 -60.5044 16.1984 -80.6894C16.2062 -80.6894 16.2141 -80.6973 16.2141 -80.6973" fill="#F5F9FC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 579 B |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="23" height="17" viewBox="0 0 23 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.5815 7.04511L15.0996 0.641888C14.0534 -0.388604 12.2677 0.335077 12.2677 1.79822V4.03228H9.30997C5.69144 4.03228 3.2922 2.77367 1.78186 0.445229C1.43574 -0.0975492 0.586182 0.138428 0.586182 0.775603V4.03228C0.586182 8.79143 4.49576 12.646 9.30997 12.646H12.2677V14.6125C12.2677 16.0678 14.0534 16.7994 15.0996 15.7689L21.5815 9.35782C22.2344 8.72065 22.2344 7.69015 21.5815 7.04511Z" fill="#06B04E"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 518 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="23" height="17" viewBox="0 0 23 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.5815 7.04511L15.0996 0.641888C14.0534 -0.388604 12.2677 0.335077 12.2677 1.79822V4.03228H9.30997C5.69144 4.03228 3.2922 2.77367 1.78186 0.445229C1.43574 -0.0975492 0.586182 0.138428 0.586182 0.775603V4.03228C0.586182 8.79143 4.49576 12.646 9.30997 12.646H12.2677V14.6125C12.2677 16.0678 14.0534 16.7994 15.0996 15.7689L21.5815 9.35782C22.2344 8.72065 22.2344 7.69015 21.5815 7.04511Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 516 B |
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/background-bottom-left.svg'); ?>" class="ci-background-bottom-left">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/background-top-left.svg'); ?>" class="ci-background-top-left">
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://follow.it" target="_blank">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/big-colored-logo.png'); ?>">
|
||||
</a>
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Alert your website visitors about new posts automatically</li>
|
||||
<li>Make them come back & increase your traffic</li>
|
||||
<li><b>Free</b> <span class="ci-light-font">(<a href="http://follow.it/features-and-pricing" target="_blank">basic plan</a>)</span></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<a href="https://follow.it/intro" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/background-top-right.svg'); ?>" class="ci-background-top-right">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/background-bottom-right.svg'); ?>" class="ci-background-bottom-right">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/face1.png'); ?>" class="ci-face-image-1">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/face2.png'); ?>" class="ci-face-image-2">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/face3.png'); ?>" class="ci-face-image-3">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/face4.png'); ?>" class="ci-face-image-4">
|
||||
</div>
|
||||
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.2 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg width="19" height="26" viewBox="0 0 19 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.897 22.5106C9.25291 22.4634 7.79766 21.6611 6.83796 20.4418C6.39744 19.9698 6.12212 19.3405 6.12212 18.6403V8.74448C6.12212 7.41507 5.11521 6.29017 3.79366 6.15645L0.946045 5.87327V17.4368C0.946045 21.6925 4.26564 25.2874 8.48987 25.4054C12.8714 25.5234 16.4664 21.9835 16.4664 17.602V17.0671C16.4664 20.1271 13.957 22.5972 10.897 22.5106ZM18.1812 4.24493C18.0082 4.32359 17.7722 4.40226 17.489 4.47306C16.9305 4.59105 16.4664 5.15744 16.4664 5.73168V15.3208C16.4664 18.3729 13.957 20.8429 10.9049 20.7643C10.6846 20.7564 10.4643 20.7328 10.2598 20.7013C10.8891 20.1979 11.2903 19.4113 11.2903 18.5538V5.73168C11.2903 5.1181 10.8655 4.60678 10.2756 4.46519C10.0081 4.40225 9.77997 4.32359 9.61478 4.24493C9.43386 4.17413 9.3945 3.93028 9.54396 3.80441L10.661 2.86832L13.5716 0.437616C13.7603 0.272422 14.0435 0.272422 14.2323 0.437616L17.1271 2.86832L18.252 3.80441C18.4015 3.93028 18.3622 4.16626 18.1812 4.24493Z" fill="url(#paint0_linear)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="1.26739" y1="-17.6871" x2="26.6779" y2="-16.7173" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00938D"/>
|
||||
<stop offset="1" stop-color="#35339F"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="19" height="26" viewBox="0 0 19 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.897 22.5106C9.25291 22.4634 7.79766 21.6611 6.83796 20.4418C6.39744 19.9698 6.12212 19.3405 6.12212 18.6403V8.74448C6.12212 7.41507 5.11521 6.29017 3.79366 6.15645L0.946045 5.87327V17.4368C0.946045 21.6925 4.26564 25.2874 8.48987 25.4054C12.8714 25.5234 16.4664 21.9835 16.4664 17.602V17.0671C16.4664 20.1271 13.957 22.5972 10.897 22.5106ZM18.1812 4.24493C18.0082 4.32359 17.7722 4.40226 17.489 4.47306C16.9305 4.59105 16.4664 5.15744 16.4664 5.73168V15.3208C16.4664 18.3729 13.957 20.8429 10.9049 20.7643C10.6846 20.7564 10.4643 20.7328 10.2598 20.7013C10.8891 20.1979 11.2903 19.4113 11.2903 18.5538V5.73168C11.2903 5.1181 10.8655 4.60678 10.2756 4.46519C10.0081 4.40225 9.77997 4.32359 9.61478 4.24493C9.43386 4.17413 9.3945 3.93028 9.54396 3.80441L10.661 2.86832L13.5716 0.437616C13.7603 0.272422 14.0435 0.272422 14.2323 0.437616L17.1271 2.86832L18.252 3.80441C18.4015 3.93028 18.3622 4.16626 18.1812 4.24493Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://mypoups.com" target="_blank">
|
||||
<img src="<?php $this->_asset('/projects/mpu/imgs/big-colored-logo.png'); ?>">
|
||||
</a>
|
||||
<img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>" class="ci-rating" >
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Create cool pop-ups with ease</li>
|
||||
<li>Increase conversions, show discount codes & cookie notices, stop ad-blockers etc.</li>
|
||||
<li><b>Free</b> <span class="ci-light-font">on <a href="https://mypopups.com" target="_blank" >basic plan</a></span></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<button class="ci-inisev-install-plugin" data-slug="mpu">Install plugin now</button>
|
||||
<span>(from <a href="https://wordpress.org/plugins/pop-up-pop-up/" target="_blank">WP directory</a>)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-already-installed-state">
|
||||
<div class="ci-already-installed-heading">
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.7975 5.74273C40.1757 5.1268 39.1785 5.1268 38.5567 5.74273L19.5688 24.6779L12.7232 17.24C12.1307 16.5947 11.1276 16.5536 10.4824 17.1461C9.843 17.7385 9.802 18.7416 10.3945 19.381L18.3603 28.0332C18.6478 28.35 19.0584 28.5318 19.4866 28.5436C19.4984 28.5436 19.51 28.5436 19.5218 28.5436C19.9441 28.5436 20.343 28.3793 20.6422 28.0802L40.7916 7.98351C41.4134 7.36759 41.4134 6.36451 40.7975 5.74273ZM40.4162 19.4162C39.5421 19.4162 38.8324 20.126 38.8324 21C38.8324 30.8313 30.8313 38.8324 21 38.8324C11.1687 38.8324 3.16761 30.8313 3.16761 21C3.16761 11.1687 11.1687 3.16758 21 3.16758C21.874 3.16758 22.5838 2.45783 22.5838 1.58381C22.5838 0.709784 21.874 0 21 0C9.42069 0 0 9.42067 0 21C0 32.5793 9.42069 42 21 42C32.5793 42 42 32.5793 42 21C42 20.126 41.2902 19.4162 40.4162 19.4162Z" fill="#00B47C"/>
|
||||
</svg>
|
||||
<p><span class="ci-colored-part">Already installed –</span> now <b>earn affiliate commissions!</b></p>
|
||||
</div>
|
||||
<p>If you share MyPopUps, you’ll earn 40% (!) of every sale you helped to generate!</p>
|
||||
<p>Just go to <a href="https://sellcodes.com/QK5UTpg3" target="_blank">Sellcodes</a>, click on “Share & earn cash” (next to the title) and follow the steps :)</p>
|
||||
<div class="ci-check-it-out-button">
|
||||
<a href="https://sellcodes.com/QK5UTpg3" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<svg width="260" height="287" viewBox="0 0 260 287" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M260 177.123C260.001 190.104 256.148 202.793 248.926 213.586C241.705 224.379 231.441 232.792 219.432 237.76C207.423 242.728 194.208 244.028 181.459 241.497C168.709 238.965 156.998 232.715 147.806 223.537C138.614 214.359 132.354 202.665 129.817 189.934C127.281 177.203 128.582 164.008 133.557 152.015C138.531 140.023 146.955 129.773 157.763 122.562C168.572 115.35 181.279 111.501 194.278 111.501C202.908 111.5 211.454 113.197 219.428 116.495C227.402 119.792 234.647 124.626 240.75 130.72C246.853 136.813 251.694 144.048 254.997 152.01C258.3 159.972 260 168.505 260 177.123ZM-125.739 -82.1804C-156.882 -58.3489 -181.43 -26.361 -193.954 10.741C-221.736 93.0385 -181.15 200.83 -93.4224 226.18C-11.4701 249.862 82.4792 199.817 97.2995 113.53C105.408 66.3073 111.616 20.7462 160.238 -1.42454C170.156 -5.94683 180.744 -8.99534 190.336 -14.1784C242.871 -42.5636 161.875 -83.6702 138.478 -95.8819C85.3785 -123.594 22.9974 -135.386 -36.1155 -123.234C-68.6949 -116.434 -99.3252 -102.403 -125.739 -82.1804ZM-225.256 59.6042C-225.257 61.8165 -225.693 64.007 -226.541 66.0509C-227.389 68.0947 -228.632 69.9517 -230.198 71.5159C-231.765 73.0802 -233.625 74.321 -235.672 75.1674C-237.718 76.0139 -239.912 76.4495 -242.128 76.4494C-244.343 76.4496 -246.537 76.014 -248.584 75.1676C-250.631 74.3212 -252.491 73.0804 -254.058 71.5162C-255.624 69.952 -256.867 68.0949 -257.715 66.051C-258.563 64.0072 -259 61.8165 -259 59.6042C-259 55.1362 -257.222 50.8514 -254.058 47.6922C-250.894 44.5331 -246.603 42.7583 -242.128 42.7585C-239.913 42.7583 -237.719 43.1939 -235.672 44.0404C-233.625 44.8869 -231.765 46.1278 -230.198 47.692C-228.632 49.2563 -227.389 51.1134 -226.541 53.1573C-225.693 55.2012 -225.257 57.3919 -225.256 59.6042ZM-108.813 254.172C-108.814 262.879 -112.278 271.229 -118.444 277.386C-124.61 283.542 -132.973 287 -141.693 287C-146.01 287 -150.286 286.151 -154.275 284.502C-158.264 282.852 -161.888 280.434 -164.942 277.386C-167.995 274.337 -170.417 270.718 -172.069 266.735C-173.722 262.752 -174.572 258.483 -174.573 254.172C-174.572 249.86 -173.722 245.591 -172.069 241.608C-170.417 237.625 -167.995 234.006 -164.942 230.957C-161.889 227.909 -158.264 225.491 -154.275 223.841C-150.286 222.192 -146.01 221.343 -141.693 221.343C-137.375 221.343 -133.1 222.192 -129.111 223.841C-125.122 225.491 -121.497 227.909 -118.444 230.958C-115.391 234.006 -112.969 237.625 -111.316 241.608C-109.664 245.591 -108.813 249.86 -108.813 254.172ZM-220.321 84.1895C-220.321 85.2063 -220.726 86.1816 -221.446 86.9006C-222.166 87.6197 -223.142 88.0236 -224.161 88.0236C-224.665 88.0237 -225.164 87.9246 -225.63 87.7319C-226.096 87.5393 -226.52 87.2569 -226.876 86.9008C-227.233 86.5448 -227.516 86.1221 -227.709 85.6569C-227.902 85.1916 -228.001 84.693 -228.001 84.1895C-228.001 83.6859 -227.902 83.1873 -227.709 82.7221C-227.516 82.2569 -227.233 81.8342 -226.876 81.4781C-226.52 81.1221 -226.096 80.8397 -225.63 80.647C-225.164 80.4544 -224.665 80.3553 -224.161 80.3553C-223.143 80.3556 -222.166 80.7597 -221.446 81.4787C-220.727 82.1977 -220.322 83.1728 -220.322 84.1895H-220.321Z" fill="#F0F3FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="48" height="23" viewBox="0 0 48 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M41.3512 8.15972L39.5502 0.235294C39.4781 0.091214 39.334 -0.0528797 39.19 0.0191605C39.1179 0.0191605 39.0459 0.0912052 39.0459 0.0912052L37.1728 2.10832C33.5708 -0.917367 28.528 0.739558 26.2227 3.18893C26.0786 3.33301 26.1507 3.47709 26.2227 3.62117C26.3668 3.76525 26.5109 3.69321 26.655 3.62117C27.2313 3.04485 31.9859 2.61262 34.6514 4.84587L32.7784 6.86298C32.6343 7.00706 32.7063 7.15115 32.7784 7.29523C32.8504 7.36727 32.8504 7.36727 32.9224 7.36727L40.9189 8.51992C41.063 8.51992 41.2071 8.44786 41.2791 8.23174C41.3512 8.23174 41.3512 8.23176 41.3512 8.15972Z" fill="#374785"/>
|
||||
<g opacity="0.4">
|
||||
<path opacity="0.4" d="M10.734 10.2489C10.4459 10.2489 10.1577 10.465 10.1577 10.8973C10.1577 11.3295 10.3738 11.5456 10.734 11.5456C11.0222 11.5456 11.3103 11.3295 11.3103 10.8973C11.2383 10.465 11.0222 10.2489 10.734 10.2489Z" fill="#374785"/>
|
||||
<path opacity="0.4" d="M25.142 6.35873H4.10628C1.87303 6.35873 0 8.15973 0 10.465C0 12.7703 1.80099 14.5713 4.10628 14.5713H25.142C27.3753 14.5713 29.2483 12.7703 29.2483 10.465C29.2483 8.15973 27.3753 6.35873 25.142 6.35873ZM5.90729 12.266C5.0428 12.266 4.39446 11.6897 4.39446 10.8973C4.39446 10.1048 5.0428 9.5285 5.90729 9.5285C6.77177 9.5285 7.42014 10.1048 7.42014 10.8973C7.42014 11.6897 6.77177 12.266 5.90729 12.266ZM8.78889 12.194H7.85238V8.59196H8.78889V12.194ZM12.1748 12.194H11.3103V11.9058C11.1662 12.1219 10.8781 12.194 10.5179 12.194C9.79748 12.194 9.22114 11.6897 9.22114 10.8252C9.22114 9.96073 9.79748 9.45646 10.5179 9.45646C10.806 9.45646 11.0942 9.52849 11.2383 9.74461V8.51994H12.1748V12.194ZM14.1199 11.1854H12.6791V10.465H14.1199V11.1854ZM17.866 10.6811C17.866 11.6897 17.2897 12.266 16.2811 12.266C15.2725 12.266 14.6962 11.6897 14.6962 10.6811V8.8081H15.6327V10.6811C15.6327 11.2575 15.8489 11.4736 16.2811 11.4736C16.7133 11.4736 16.9295 11.2575 16.9295 10.6811V8.8081H17.866V10.6811ZM20.6755 12.194L20.0272 11.2575H19.5229V12.194H18.5864V8.8081H20.1713C21.1078 8.8081 21.6841 9.31237 21.6841 10.1048C21.6841 10.6091 21.468 10.9693 21.0357 11.1854L21.7561 12.266H20.6755V12.194ZM24.7818 12.194H22.1884V8.8081H23.1249V11.4736H24.7818V12.194Z" fill="#374785"/>
|
||||
<path opacity="0.4" d="M20.0271 9.5285H19.5228V10.5371H20.0271C20.4593 10.5371 20.6034 10.3209 20.6034 10.0328C20.6755 9.74461 20.4593 9.5285 20.0271 9.5285Z" fill="#374785"/>
|
||||
<path opacity="0.4" d="M5.90737 10.2489C5.61921 10.2489 5.33105 10.465 5.33105 10.8973C5.33105 11.3295 5.54717 11.5456 5.90737 11.5456C6.19553 11.5456 6.4837 11.3295 6.4837 10.8973C6.4837 10.465 6.19553 10.2489 5.90737 10.2489Z" fill="#374785"/>
|
||||
</g>
|
||||
<path d="M41.4952 23H12.1748C9.07709 23 6.48364 20.4786 6.48364 17.3088V17.2368C6.48364 14.139 9.00505 11.5456 12.1748 11.5456H41.4952C44.5929 11.5456 47.1864 14.067 47.1864 17.2368V17.3088C47.1864 20.4786 44.665 23 41.4952 23Z" fill="#374785"/>
|
||||
<path d="M14.7682 17.5249V19.6141H13.4715V17.7411C13.4715 17.2368 13.2554 17.0207 12.8952 17.0207C12.4629 17.0207 12.1748 17.3088 12.1748 17.8852V19.6862H10.8781V15.9401H12.1027V16.3723C12.3909 16.0841 12.8231 15.9401 13.2554 15.9401C14.1199 15.868 14.7682 16.3723 14.7682 17.5249Z" fill="white"/>
|
||||
<path d="M19.3787 18.1012H16.7132C16.8573 18.4614 17.1455 18.6776 17.6498 18.6776C18.01 18.6776 18.2261 18.6055 18.5142 18.3894L19.1626 19.1098C18.8024 19.47 18.2981 19.6861 17.5777 19.6861C16.281 19.6861 15.4165 18.8937 15.4165 17.8131C15.4165 16.7325 16.281 15.94 17.4336 15.94C18.5142 15.94 19.3787 16.6604 19.3787 17.8131C19.3787 17.8851 19.3787 18.0292 19.3787 18.1012ZM16.6412 17.4529H18.154C18.082 17.0927 17.7938 16.8045 17.4336 16.8045C17.0014 16.8045 16.7132 17.0206 16.6412 17.4529Z" fill="white"/>
|
||||
<path d="M26.0064 15.94L24.7097 19.6141H23.485L22.7646 17.5969L22.0442 19.6141H20.8195L19.5228 15.94H20.7475L21.4679 18.1733L22.2603 15.94H23.341L24.1334 18.1733L24.9258 15.94H26.0064Z" fill="white"/>
|
||||
<path d="M26.1505 17.1647H28.0956V18.1733H26.1505V17.1647Z" fill="white"/>
|
||||
<path d="M28.8881 17.5249V14.8594H30.2568V17.4529C30.2568 18.2453 30.617 18.6055 31.1933 18.6055C31.7697 18.6055 32.0578 18.2453 32.0578 17.4529V14.8594H33.3545V17.5249C33.3545 18.9657 32.5621 19.7582 31.1213 19.7582C29.7525 19.6861 28.8881 18.8937 28.8881 17.5249Z" fill="white"/>
|
||||
<path d="M36.3803 18.3894H35.6599V19.6861H34.2911V14.9315H36.4523C37.7491 14.9315 38.5415 15.5798 38.5415 16.6604C38.5415 17.3809 38.1813 17.8851 37.605 18.1733L38.6136 19.6861H37.1727L36.3803 18.3894ZM36.3803 15.94H35.6599V17.3088H36.3803C36.9566 17.3088 37.2448 17.0206 37.2448 16.5884C37.1727 16.1562 36.9566 15.94 36.3803 15.94Z" fill="white"/>
|
||||
<path d="M39.334 14.8594H40.7027V18.5335H42.936V19.6141H39.334V14.8594Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 74 KiB |
@@ -0,0 +1,17 @@
|
||||
<svg width="45" height="22" viewBox="0 0 45 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M39.2718 7.74945L37.5614 0.223493C37.4929 0.0866579 37.3561 -0.0501902 37.2193 0.0182276C37.1509 0.0182276 37.0824 0.0866496 37.0824 0.0866496L35.3036 2.00234C31.8827 -0.871208 27.0934 0.702401 24.9041 3.02861C24.7672 3.16544 24.8357 3.30228 24.9041 3.43912C25.0409 3.57595 25.1778 3.50753 25.3146 3.43912C25.8619 2.89177 30.3775 2.48128 32.909 4.60223L31.1301 6.51792C30.9933 6.65475 31.0617 6.79159 31.1301 6.92843C31.1985 6.99685 31.1985 6.99685 31.2669 6.99685L38.8613 8.09154C38.9981 8.09154 39.135 8.0231 39.2034 7.81785C39.2718 7.81785 39.2718 7.81787 39.2718 7.74945Z" fill="white"/>
|
||||
<g opacity="0.4">
|
||||
<path opacity="0.4" d="M10.1942 9.73355C9.92051 9.73355 9.64685 9.9388 9.64685 10.3493C9.64685 10.7598 9.8521 10.9651 10.1942 10.9651C10.4679 10.9651 10.7415 10.7598 10.7415 10.3493C10.6731 9.9388 10.4679 9.73355 10.1942 9.73355Z" fill="white"/>
|
||||
<path opacity="0.4" d="M23.8778 6.039H3.8998C1.77885 6.039 0 7.74943 0 9.9388C0 12.1282 1.71043 13.8386 3.8998 13.8386H23.8778C25.9988 13.8386 27.7776 12.1282 27.7776 9.9388C27.7776 7.74943 25.9988 6.039 23.8778 6.039ZM5.61025 11.6492C4.78923 11.6492 4.17349 11.1019 4.17349 10.3493C4.17349 9.59672 4.78923 9.04938 5.61025 9.04938C6.43126 9.04938 7.04702 9.59672 7.04702 10.3493C7.04702 11.1019 6.43126 11.6492 5.61025 11.6492ZM8.34696 11.5808H7.45753V8.15994H8.34696V11.5808ZM11.5626 11.5808H10.7416V11.3072C10.6047 11.5124 10.3311 11.5808 9.989 11.5808C9.30482 11.5808 8.75747 11.1019 8.75747 10.2809C8.75747 9.45988 9.30482 8.98096 9.989 8.98096C10.2627 8.98096 10.5363 9.04937 10.6732 9.25462V8.09153H11.5626V11.5808ZM13.4099 10.623H12.0415V9.9388H13.4099V10.623ZM16.9676 10.1441C16.9676 11.1019 16.4203 11.6492 15.4624 11.6492C14.5046 11.6492 13.9572 11.1019 13.9572 10.1441V8.3652H14.8466V10.1441C14.8466 10.6914 15.0519 10.8966 15.4624 10.8966C15.8729 10.8966 16.0782 10.6914 16.0782 10.1441V8.3652H16.9676V10.1441ZM19.6359 11.5808L19.0201 10.6914H18.5412V11.5808H17.6518V8.3652H19.157C20.0464 8.3652 20.5938 8.84412 20.5938 9.59671C20.5938 10.0756 20.3885 10.4177 19.978 10.623L20.6622 11.6492H19.6359V11.5808ZM23.5357 11.5808H21.0727V8.3652H21.9621V10.8966H23.5357V11.5808Z" fill="white"/>
|
||||
<path opacity="0.4" d="M19.02 9.04938H18.5411V10.0072H19.02C19.4306 10.0072 19.5674 9.80196 19.5674 9.52829C19.6358 9.25462 19.4306 9.04938 19.02 9.04938Z" fill="white"/>
|
||||
<path opacity="0.4" d="M5.61032 9.73355C5.33665 9.73355 5.06299 9.9388 5.06299 10.3493C5.06299 10.7598 5.26823 10.9651 5.61032 10.9651C5.88399 10.9651 6.15768 10.7598 6.15768 10.3493C6.15768 9.9388 5.88399 9.73355 5.61032 9.73355Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M39.4086 21.8435H11.5626C8.62063 21.8435 6.15759 19.4489 6.15759 16.4385V16.3701C6.15759 13.4281 8.55221 10.9651 11.5626 10.9651H39.4086C42.3506 10.9651 44.8136 13.3597 44.8136 16.3701V16.4385C44.8136 19.4489 42.419 21.8435 39.4086 21.8435Z" fill="white"/>
|
||||
<path d="M14.0256 16.6437V18.6279H12.7941V16.849C12.7941 16.3701 12.5888 16.1648 12.2467 16.1648C11.8362 16.1648 11.5626 16.4385 11.5626 16.9858V18.6963H10.3311V15.1385H11.4941V15.549C11.7678 15.2754 12.1783 15.1385 12.5888 15.1385C13.4098 15.0701 14.0256 15.5491 14.0256 16.6437Z" fill="black"/>
|
||||
<path d="M18.4042 17.1911H15.8727C16.0096 17.5331 16.2833 17.7384 16.7622 17.7384C17.1043 17.7384 17.3095 17.67 17.5832 17.4647L18.199 18.1489C17.8569 18.491 17.3779 18.6963 16.6938 18.6963C15.4622 18.6963 14.6412 17.9437 14.6412 16.9174C14.6412 15.8911 15.4622 15.1385 16.5569 15.1385C17.5832 15.1385 18.4042 15.8227 18.4042 16.9174C18.4042 16.9858 18.4042 17.1226 18.4042 17.1911ZM15.8043 16.5753H17.2411C17.1727 16.2332 16.899 15.9595 16.5569 15.9595C16.1464 15.9595 15.8728 16.1648 15.8043 16.5753Z" fill="black"/>
|
||||
<path d="M24.6987 15.1385L23.4672 18.6278H22.3041L21.6199 16.7121L20.9358 18.6278H19.7726L18.5411 15.1385H19.7042L20.3884 17.2595L21.141 15.1385H22.1673L22.9199 17.2595L23.6725 15.1385H24.6987Z" fill="black"/>
|
||||
<path d="M24.8356 16.3016H26.6829V17.2595H24.8356V16.3016Z" fill="black"/>
|
||||
<path d="M27.4354 16.6437V14.1123H28.7354V16.5753C28.7354 17.3279 29.0774 17.67 29.6248 17.67C30.1721 17.67 30.4458 17.3279 30.4458 16.5753V14.1123H31.6773V16.6437C31.6773 18.0121 30.9247 18.7647 29.5564 18.7647C28.2564 18.6963 27.4354 17.9437 27.4354 16.6437Z" fill="black"/>
|
||||
<path d="M34.5509 17.4647H33.8667V18.6963H32.5668V14.1807H34.6193C35.8508 14.1807 36.6034 14.7965 36.6034 15.8227C36.6034 16.5069 36.2613 16.9858 35.714 17.2595L36.6718 18.6963H35.3035L34.5509 17.4647ZM34.5509 15.1385H33.8667V16.4385H34.5509C35.0982 16.4385 35.3719 16.1648 35.3719 15.7543C35.3035 15.3438 35.0982 15.1385 34.5509 15.1385Z" fill="black"/>
|
||||
<path d="M37.3561 14.1123H38.656V17.6016H40.777V18.6279H37.3561V14.1123Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/background-top-left.svg'); ?>" class="ci-background-top-left">
|
||||
<div class="ci-left-part ci-install-state">
|
||||
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://wordpress.org/plugins/redirect-redirection/" target="_blank">
|
||||
<img class="ci-redi-logo-p" alt="Redirect Logo" src="<?php $this->_asset('/projects/red/imgs/big-colored-logo-rr.png'); ?>">
|
||||
</a>
|
||||
<img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>">
|
||||
</div>
|
||||
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Redirect URLs with one click</li>
|
||||
<li>Define redirection rules</li>
|
||||
<li><b>100% Free</b></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<button class="ci-inisev-install-plugin" data-slug="redi">Install plugin now</button>
|
||||
<span>(from <a href="https://wordpress.org/plugins/redirect-redirection/" target="_blank">WP directory</a>)</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/main-background-image.png'); ?>" class="ci-background-top-right">
|
||||
</div>
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/background-top-left.svg'); ?>" class="ci-background-top-left">
|
||||
<div class="ci-left-part ci-install-state">
|
||||
|
||||
<div class="ci-install-column ci-installed-column ci-installed-column-redi">
|
||||
<div class="ci-already-installed-heading ci-already-installed-heading-redi">
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.7975 5.74273C40.1757 5.1268 39.1785 5.1268 38.5567 5.74273L19.5688 24.6779L12.7232 17.24C12.1307 16.5947 11.1276 16.5536 10.4824 17.1461C9.843 17.7385 9.802 18.7416 10.3945 19.381L18.3603 28.0332C18.6478 28.35 19.0584 28.5318 19.4866 28.5436C19.4984 28.5436 19.51 28.5436 19.5218 28.5436C19.9441 28.5436 20.343 28.3793 20.6422 28.0802L40.7916 7.98351C41.4134 7.36759 41.4134 6.36451 40.7975 5.74273ZM40.4162 19.4162C39.5421 19.4162 38.8324 20.126 38.8324 21C38.8324 30.8313 30.8313 38.8324 21 38.8324C11.1687 38.8324 3.16761 30.8313 3.16761 21C3.16761 11.1687 11.1687 3.16758 21 3.16758C21.874 3.16758 22.5838 2.45783 22.5838 1.58381C22.5838 0.709784 21.874 0 21 0C9.42069 0 0 9.42067 0 21C0 32.5793 9.42069 42 21 42C32.5793 42 42 32.5793 42 21C42 20.126 41.2902 19.4162 40.4162 19.4162Z" fill="#6BB4A7"/>
|
||||
</svg>
|
||||
<div class="ci-already-redi-installed">
|
||||
<span class="ci-colored-part">Already installed</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-check-out-others-redi">
|
||||
Please keep checking out our other plugins :)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="ci-right-part">
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/main-background-image.png'); ?>" class="ci-background-top-right">
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<svg width="1078" height="256" viewBox="0 0 1078 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1182.6 -319.374H-16.9554V42.1165C-16.9554 42.1165 109.126 138.472 226.831 138.472C344.527 138.472 421.012 96.8271 540.966 96.8271C656.404 96.8271 682.788 222.319 863.683 222.319C1044.59 222.319 1182.6 268.589 1182.6 268.589V-319.374Z" fill="#F8F8FF"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 371 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="213" height="78" viewBox="0 0 213 78" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.4" d="M154.555 76.8799C185.06 79.5915 248.394 64.2906 229.994 -18.4117L223.119 -142.175L53.4532 -123.387C47.7396 -111.282 36.1187 -83.5857 35.1503 -70.2216C33.8913 -53.4681 30.3082 -40.3946 23.2388 -30.42C16.1694 -20.4453 -7.1693 -13.4728 2.61164 2.69967C15.8789 24.5857 63.912 20.6153 85.6044 32.0425C110.493 45.2129 124.05 74.2652 154.555 76.8799Z" fill="#FE7269"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 490 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="156" height="104" viewBox="0 0 156 104" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M134.936 100.316C164.182 109.322 229.356 107.579 228.581 22.8428L247.659 -99.5643L77.7998 -116.512C69.762 -105.859 52.6211 -81.1645 48.8443 -68.2847C44.0991 -52.2091 37.9012 -40.1039 28.895 -31.8725C19.8888 -23.641 -4.32145 -21.6073 1.87637 -3.78854C10.3015 20.3249 58.141 26.5227 76.9282 42.1141C98.4269 60.1265 105.69 91.3094 134.936 100.316Z" fill="#FE7269"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 479 B |
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns:v="https://vecta.io/nano"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 45 46"
|
||||
style="enable-background:new 0 0 45 46;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FE7269;}
|
||||
.st1{fill:url(#SVGID_1_);}
|
||||
</style>
|
||||
<path class="st0" d="M5.3,0h4.6c2.9,0,5.3,2.4,5.3,5.3v0c0,2.9-2.4,5.3-5.3,5.3H5.3C2.4,10.7,0,8.3,0,5.3v0C0,2.4,2.4,0,5.3,0z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="22.5097" y1="23.1416" x2="27.8497" y2="39.5406" gradientTransform="matrix(1 0 0 -1 0 48)">
|
||||
<stop offset="0" style="stop-color:#FE7269"/>
|
||||
<stop offset="1" style="stop-color:#800901"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M22.9,45c2.9,0,5.3-2.4,5.3-5.3V2.5c0-1.4-1.1-2.5-2.5-2.5c-4.5,0-8.2,3.7-8.2,8.2v31.5
|
||||
C17.5,42.6,19.9,45,22.9,45L22.9,45z"/>
|
||||
<path class="st0" d="M28.2,10.7c-8.4,0.4-10.7,8.2-10.7,8.2l0-10.7c0-4.5,3.7-8.2,8.2-8.2h13.1c2.9,0,5.3,2.4,5.3,5.3
|
||||
c0,2.9-2.4,5.3-5.3,5.3L28.2,10.7L28.2,10.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns:v="https://vecta.io/nano"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 45 46"
|
||||
style="enable-background:new 0 0 45 46;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:url(#SVGID_1_);}
|
||||
</style>
|
||||
<path class="st0" d="M5.3,0h4.6c2.9,0,5.3,2.4,5.3,5.3v0c0,2.9-2.4,5.3-5.3,5.3H5.3C2.4,10.7,0,8.3,0,5.3v0C0,2.4,2.4,0,5.3,0z"/>
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="22.9588" y1="22.5937" x2="23.5707" y2="1.6388">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#A1A1A1"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M22.9,45c2.9,0,5.3-2.3,5.3-5V5c0-1.3-1.1-2.3-2.5-2.3c-4.5,0-8.2,3.5-8.2,7.7V40C17.5,42.8,19.9,45,22.9,45
|
||||
L22.9,45z"/>
|
||||
<path class="st0" d="M28.2,10.7c-8.4,0.4-10.7,8.2-10.7,8.2l0-10.7c0-4.5,3.7-8.2,8.2-8.2h13.1c2.9,0,5.3,2.4,5.3,5.3
|
||||
c0,2.9-2.4,5.3-5.3,5.3L28.2,10.7L28.2,10.7z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://tastewp.com" target="_blank">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/big-colored-logo.png'); ?>">
|
||||
</a>
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Spin up a WordPress instance with one click <br class="ci-additional-text-break"><span class="ci-light-font">(without being logged in!)</span></li>
|
||||
<li>Test things out before doing it on your “real” site</li>
|
||||
<li><b>100% Free!</b></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<a href="https://tastewp.com" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="28" viewBox="0 0 22 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.0089 8.33664C21.8978 10.0672 21.4023 11.7664 20.301 12.7733C19.066 13.906 17.1387 14.0004 15.7935 12.9385C15.5576 12.7576 15.3845 12.7339 15.1092 12.8755C12.6391 14.1184 10.1612 15.3456 7.69121 16.5885C7.54961 16.6593 7.30575 16.675 7.39228 16.9424C7.49454 17.2414 7.17202 17.6111 7.68333 17.855C10.2006 19.0821 12.7021 20.3486 15.2036 21.615C15.4238 21.733 15.5497 21.6937 15.7385 21.5443C17.8309 19.9081 20.7258 20.915 21.3787 23.4951C21.9136 25.6348 20.238 27.7666 18.0512 27.8374C16.4307 27.8924 14.5035 26.6653 14.4484 24.4076C14.4405 23.8413 14.2281 23.6996 13.8348 23.503C11.4041 22.323 8.97341 21.1352 6.5427 19.9395C6.40111 19.8687 6.28313 19.8294 6.14153 19.9474C5.00091 20.8756 3.75015 20.9543 2.41287 20.4587C1.47677 19.9395 0.776662 19.2158 0.493473 18.146C0.115888 16.7143 0.642952 15.1961 1.81504 14.3544C3.03432 13.4734 4.62332 13.4026 5.81901 14.2679C6.23593 14.5668 6.5191 14.5196 6.91242 14.323C9.24873 13.1666 11.5929 12.0181 13.9371 10.8854C14.2753 10.7202 14.4484 10.5786 14.4327 10.1144C14.4012 8.58837 15.4474 7.21962 16.8634 6.76337C18.3422 6.28352 19.8841 6.80273 20.8123 8.07708C20.8752 8.16361 20.9381 8.25011 21.0089 8.33664ZM10.1927 8.03771C8.4857 8.45463 7.4316 9.49303 6.95962 11.2787C6.48764 9.50877 5.44142 8.45467 3.70296 8.02989C5.42569 7.59724 6.50339 6.55098 6.95177 4.80465C7.51028 6.70831 8.61156 7.62866 10.1927 8.03771ZM12.7493 0.816406C13.0561 1.85476 13.646 2.45263 14.6372 2.71222C13.6775 3.00328 13.0324 3.56178 12.7571 4.62374C12.4503 3.60112 11.8525 2.99542 10.8456 2.7201C11.8446 2.44478 12.4425 1.85476 12.7493 0.816406Z" fill="url(#paint0_linear)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="3.31426" y1="-21.2976" x2="26.4714" y2="-19.3391" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFA100"/>
|
||||
<stop offset="0.5" stop-color="#FFC700"/>
|
||||
<stop offset="1" stop-color="#FFA100"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 631 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 22 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="22" height="28" viewBox="0 0 22 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.0089 8.33664C21.8978 10.0672 21.4023 11.7664 20.301 12.7733C19.066 13.906 17.1387 14.0004 15.7935 12.9385C15.5576 12.7576 15.3845 12.7339 15.1092 12.8755C12.6391 14.1184 10.1612 15.3456 7.69121 16.5885C7.54961 16.6593 7.30575 16.675 7.39228 16.9424C7.49454 17.2414 7.17202 17.6111 7.68333 17.855C10.2006 19.0821 12.7021 20.3486 15.2036 21.615C15.4238 21.733 15.5497 21.6937 15.7385 21.5443C17.8309 19.9081 20.7258 20.915 21.3787 23.4951C21.9136 25.6348 20.238 27.7666 18.0512 27.8374C16.4307 27.8924 14.5035 26.6653 14.4484 24.4076C14.4405 23.8413 14.2281 23.6996 13.8348 23.503C11.4041 22.323 8.97341 21.1352 6.5427 19.9395C6.40111 19.8687 6.28313 19.8294 6.14153 19.9474C5.00091 20.8756 3.75015 20.9543 2.41287 20.4587C1.47677 19.9395 0.776662 19.2158 0.493473 18.146C0.115888 16.7143 0.642952 15.1961 1.81504 14.3544C3.03432 13.4734 4.62332 13.4026 5.81901 14.2679C6.23593 14.5668 6.5191 14.5196 6.91242 14.323C9.24873 13.1666 11.5929 12.0181 13.9371 10.8854C14.2753 10.7202 14.4484 10.5786 14.4327 10.1144C14.4012 8.58837 15.4474 7.21962 16.8634 6.76337C18.3422 6.28352 19.8841 6.80273 20.8123 8.07708C20.8752 8.16361 20.9381 8.25011 21.0089 8.33664ZM10.1927 8.03771C8.4857 8.45463 7.4316 9.49303 6.95962 11.2787C6.48764 9.50877 5.44142 8.45467 3.70296 8.02989C5.42569 7.59724 6.50339 6.55098 6.95177 4.80465C7.51028 6.70831 8.61156 7.62866 10.1927 8.03771ZM12.7493 0.816406C13.0561 1.85476 13.646 2.45263 14.6372 2.71222C13.6775 3.00328 13.0324 3.56178 12.7571 4.62374C12.4503 3.60112 11.8525 2.99542 10.8456 2.7201C11.8446 2.44478 12.4425 1.85476 12.7493 0.816406Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-install-state">
|
||||
<div class="ci-project-logo">
|
||||
<a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/big-colored-logo.png'); ?>">
|
||||
</a>
|
||||
<img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>">
|
||||
</div>
|
||||
<div class="ci-install-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-1">
|
||||
<li>Show social media & sharing icons</li>
|
||||
<li>Maximize shares for more traffic</li>
|
||||
<li><b>Free</b> <span class="ci-light-font">(optional upgrade to <a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank">premium</a>)</span></li>
|
||||
</ul>
|
||||
<div class="ci-install-button">
|
||||
<button class="ci-inisev-install-plugin" data-slug="usm">Install plugin now</button>
|
||||
<span>(from <a href="https://wordpress.org/plugins/ultimate-social-media-icons/" target="_blank">WP directory</a>)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-already-installed-state">
|
||||
<div class="ci-big-colored-logo">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/big-colored-logo.png'); ?>">
|
||||
</div>
|
||||
<div class="ci-already-installed-element">
|
||||
<div class="ci-already-installed-heading">
|
||||
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40.7975 5.74273C40.1757 5.1268 39.1785 5.1268 38.5567 5.74273L19.5688 24.6779L12.7232 17.24C12.1307 16.5947 11.1276 16.5536 10.4824 17.1461C9.843 17.7385 9.802 18.7416 10.3945 19.381L18.3603 28.0332C18.6478 28.35 19.0584 28.5318 19.4866 28.5436C19.4984 28.5436 19.51 28.5436 19.5218 28.5436C19.9441 28.5436 20.343 28.3793 20.6422 28.0802L40.7916 7.98351C41.4134 7.36759 41.4134 6.36451 40.7975 5.74273ZM40.4162 19.4162C39.5421 19.4162 38.8324 20.126 38.8324 21C38.8324 30.8313 30.8313 38.8324 21 38.8324C11.1687 38.8324 3.16761 30.8313 3.16761 21C3.16761 11.1687 11.1687 3.16758 21 3.16758C21.874 3.16758 22.5838 2.45783 22.5838 1.58381C22.5838 0.709784 21.874 0 21 0C9.42069 0 0 9.42067 0 21C0 32.5793 9.42069 42 21 42C32.5793 42 42 32.5793 42 21C42 20.126 41.2902 19.4162 40.4162 19.4162Z" fill="#06B04E"/>
|
||||
</svg>
|
||||
<p><span class="ci-colored-part">Already installed –</span> now <b>earn affiliate commissions!</b></p>
|
||||
</div>
|
||||
<p>If you share this plugin, you’ll earn 40% (!) of every sale you helped to generate!</p>
|
||||
<p>Just go to <a href="https://sellcodes.com/XdHlrQnc" target="_blank">Sellcodes</a>, click on “Share & earn cash” (next to the title) and follow the steps :)</p>
|
||||
<div class="ci-check-it-out-button">
|
||||
<a href="https://sellcodes.com/XdHlrQnc" target="_blank" class="ci-button-link ci-round-button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-right-part ci-hidden-for-upgrade">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/background-icons.png'); ?>" class="ci-main-image ci-background-icons">
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-right-part ci-visible-for-upgrade">
|
||||
<div class="ci-video-link-wrapper">
|
||||
<a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank">
|
||||
<div class="ci-video-link">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/video-background.png'); ?>" class="ci-video-background">
|
||||
<div class="ci-play-icon-wrapper">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/play-icon.png'); ?>" class="ci-play-icon">
|
||||
</div>
|
||||
</div>
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/ribbon-icon.png'); ?>" class="ci-ribbon-icon">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-left-part ci-upgrade-state">
|
||||
<h2>Don’t forget to <a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank">upgrade to premium</a> for the social sharing plugin :)</h2>
|
||||
<div class="ci-pros-list ci-three-columns-pros-list">
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>More likes & shares </li>
|
||||
<li>More icon designs</li>
|
||||
<li>Friendly support</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Mobile optimization</li>
|
||||
<li>Faster loading</li>
|
||||
<li>More platforms</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Themed icons</li>
|
||||
<li>Better icon placement</li>
|
||||
<li class="ci-no-checkmark ci-fancy-signature">...and so <a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank" class="ci-green-text">much more!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ci-pros-list ci-two-columns-pros-list">
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>More likes & shares </li>
|
||||
<li>More icon designs</li>
|
||||
<li>Friendly support</li>
|
||||
<li>Mobile optimization</li>
|
||||
<li class="ci-no-checkmark ci-fancy-signature">...and so <a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank" class="ci-green-text">much more!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ci-pros-list-column">
|
||||
<ul class="ci-checkmark-list ci-checkmark-list-type-2">
|
||||
<li>Faster loading</li>
|
||||
<li>More platforms</li>
|
||||
<li>Themed icons</li>
|
||||
<li>Better icon placement</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<svg width="69" height="68" viewBox="0 0 69 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M66.8472 9.37489C65.842 8.3791 64.2298 8.3791 63.2245 9.37489L32.5257 39.9884L21.4581 27.963C20.5002 26.9198 18.8785 26.8534 17.8352 27.8113C16.8015 28.7691 16.7352 30.3908 17.6931 31.4246L30.572 45.4131C31.0367 45.9252 31.7006 46.2192 32.3929 46.2382C32.4118 46.2382 32.4307 46.2382 32.4497 46.2382C33.1325 46.2382 33.7775 45.9726 34.2611 45.489L66.8378 12.9977C67.843 12.0019 67.843 10.3802 66.8472 9.37489ZM66.2308 31.4815C64.8177 31.4815 63.6702 32.629 63.6702 34.0421C63.6702 49.9368 50.7344 62.8727 34.8396 62.8727C18.9449 62.8727 6.00906 49.9368 6.00906 34.0421C6.00906 18.1474 18.9449 5.21151 34.8396 5.21151C36.2527 5.21151 37.4002 4.06403 37.4002 2.65095C37.4002 1.23788 36.2527 0.090332 34.8396 0.090332C16.1187 0.090332 0.887817 15.3212 0.887817 34.0421C0.887817 52.763 16.1187 67.9939 34.8396 67.9939C53.5605 67.9939 68.7915 52.763 68.7915 34.0421C68.7915 32.629 67.6439 31.4815 66.2308 31.4815Z" fill="#00B47C"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="19" height="20" viewBox="0 0 19 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.08501 13.6508C7.39966 13.0687 7.69861 12.5102 7.99753 11.9438C9.78319 8.69502 11.679 5.52486 14.2434 2.8267C15.0537 1.97713 15.9976 1.24557 16.9258 0.521863C17.5787 0.0105503 18.0114 -0.0602354 18.4912 0.0420272C18.3418 0.679202 18.2159 1.32424 18.0428 1.95355C17.9878 2.15807 17.8462 2.35473 17.6888 2.49633C14.3142 5.6822 12.088 9.59967 10.4203 13.879C9.92475 15.169 9.54719 16.5063 9.11454 17.8278C9.08307 17.9222 9.08309 18.0796 9.02802 18.1032C8.16272 18.4965 7.30528 18.8898 6.41639 19.2123C6.31412 19.2517 5.99944 18.9291 5.89718 18.7167C4.78802 16.4198 3.14397 14.579 1.13805 13.053C0.67393 12.699 0.626713 12.3057 0.823372 11.8494C1.24029 10.8504 1.68867 9.85923 2.15279 8.8838C2.42024 8.31742 2.7821 8.30955 3.13608 8.78153C3.5766 9.37151 4.04858 9.9379 4.51269 10.5121C5.34653 11.5348 6.18824 12.5495 7.08501 13.6508Z" fill="#1BCB61"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 962 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.7793 4.77503C15.4208 4.94843 15.2709 5.37975 15.4443 5.738C15.918 6.71664 16.1581 7.7715 16.1581 8.87442C16.1581 12.8504 12.9233 16.0852 8.9473 16.0852C4.97131 16.0852 1.73648 12.8504 1.73648 8.87442C1.73648 4.89844 4.97131 1.6636 8.9473 1.6636C10.5949 1.6636 12.1427 2.2016 13.4238 3.21931C13.7345 3.46736 14.1889 3.41543 14.4369 3.10365C14.685 2.79205 14.633 2.33821 14.3211 2.09051C12.8045 0.885127 10.8959 0.221436 8.9473 0.221436C4.17629 0.221436 0.294312 4.10342 0.294312 8.87442C0.294312 13.6454 4.17629 17.5274 8.9473 17.5274C13.7183 17.5274 17.6003 13.6454 17.6003 8.87442C17.6003 7.55232 17.3116 6.28532 16.7422 5.11004C16.5692 4.75091 16.1365 4.60127 15.7793 4.77503Z" fill="#0F9990"/>
|
||||
<path d="M8.94728 3.10571C8.54924 3.10571 8.2262 3.42876 8.2262 3.8268V8.87437C8.2262 9.27241 8.54924 9.59546 8.94728 9.59546H12.5527C12.9507 9.59546 13.2738 9.27241 13.2738 8.87437C13.2738 8.47633 12.9507 8.15329 12.5527 8.15329H9.66836V3.8268C9.66836 3.42876 9.34532 3.10571 8.94728 3.10571Z" fill="#0F9990"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,7 @@
|
||||
<svg width="128" height="22" viewBox="0 0 128 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.679 0.887695C39.9062 0.895562 39.977 1.6901 40.3388 2.54753C41.0389 4.168 41.7311 5.78059 42.4312 7.40106C44.6417 7.61345 46.86 7.82584 49.0704 8.03823C49.4087 8.17196 49.7155 8.54169 49.7942 8.93501C49.983 9.84751 49.0705 10.2959 48.6457 10.6341C47.3084 11.8298 45.979 13.0176 44.6417 14.2133C45.0665 16.0462 45.4913 17.8791 45.9161 19.704C46.1127 20.475 46.1442 21.2616 45.5385 21.6234C44.8384 22.0404 44.0753 21.4975 43.5797 21.1986C42.0301 20.2625 40.4804 19.3264 38.9386 18.3903C37.4047 19.2792 35.8707 20.176 34.3368 21.0728C33.8648 21.356 33.1962 22.0246 32.4174 21.71C31.6701 21.4032 31.6543 20.5615 31.8667 19.704C32.2915 17.8791 32.7163 16.0462 33.1411 14.2133C31.8117 13.0176 30.4744 11.8298 29.145 10.6341C28.7124 10.2959 27.7998 9.84751 27.9965 8.93501C28.0752 8.54956 28.3819 8.17196 28.7202 8.03823C30.9306 7.82584 33.1489 7.61345 35.3594 7.40106C36.2404 5.35581 37.1215 3.31056 38.0025 1.26531C38.2228 1.13945 38.4509 1.01356 38.679 0.887695Z" fill="#F9C100"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.5164 0.887451C12.7435 0.895318 12.8144 1.68986 13.1762 2.54729C13.8763 4.16776 14.5685 5.78035 15.2608 7.40082C17.4791 7.61321 19.6895 7.8256 21.9079 8.03799C22.2461 8.17172 22.545 8.54145 22.6315 8.93476C22.8203 9.84726 21.9079 10.2956 21.4831 10.6339C20.1458 11.8296 18.8164 13.0174 17.4791 14.2131C17.9039 16.0459 18.3287 17.8788 18.7534 19.7038C18.9501 20.4747 18.9737 21.2613 18.3759 21.6232C17.6758 22.0401 16.9127 21.4973 16.4172 21.1984C14.8675 20.2623 13.3178 19.3262 11.776 18.3901C10.242 19.279 8.70813 20.1758 7.17419 21.0725C6.70221 21.3557 6.03356 22.0244 5.25479 21.7097C4.50749 21.4029 4.48388 20.5612 4.70414 19.7038C5.12892 17.8788 5.5537 16.0459 5.97849 14.2131C4.64907 13.0174 3.31178 11.8296 1.98236 10.6339C1.54972 10.2956 0.637241 9.84726 0.826034 8.93476C0.912564 8.54931 1.21934 8.17172 1.54972 8.03799C3.76804 7.8256 5.97849 7.61321 8.1968 7.40082C9.07784 5.35556 9.95885 3.31032 10.832 1.26507C11.0601 1.13921 11.2883 1.01331 11.5164 0.887451Z" fill="#F9C100"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.8414 0.887695C67.0686 0.895562 67.1394 1.6901 67.5013 2.54753C68.2014 4.168 68.8936 5.78059 69.5937 7.40106C71.8042 7.61345 74.0225 7.82584 76.2329 8.03823C76.5712 8.17196 76.8779 8.54169 76.9566 8.93501C77.1454 9.84751 76.2329 10.2959 75.8082 10.6341C74.4709 11.8298 73.1414 13.0176 71.8042 14.2133C72.2289 16.0462 72.6537 17.8791 73.0785 19.704C73.2752 20.475 73.3066 21.2616 72.7009 21.6234C72.0008 22.0404 71.2378 21.4975 70.7422 21.1986C69.1925 20.2625 67.6429 19.3264 66.101 18.3903C64.5671 19.2792 63.0332 20.176 61.4993 21.0728C61.0273 21.356 60.3586 22.0246 59.5877 21.71C58.8326 21.4032 58.8168 20.5615 59.0292 19.704C59.454 17.8791 59.8788 16.0462 60.3114 14.2133C58.9741 13.0176 57.6368 11.8298 56.3074 10.6341C55.8748 10.2959 54.9623 9.84751 55.159 8.93501C55.2376 8.54956 55.5444 8.17196 55.8827 8.03823C58.0931 7.82584 60.3114 7.61345 62.5219 7.40106C63.4029 5.35581 64.2839 3.31056 65.165 1.26531C65.3931 1.13945 65.6133 1.01356 65.8414 0.887695Z" fill="#F9C100"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.6116 0.887695C92.8388 0.895562 92.9096 1.6901 93.2714 2.54753C93.9715 4.168 94.6638 5.78059 95.3639 7.40106C97.5743 7.61345 99.7927 7.82584 102.003 8.03823C102.341 8.17196 102.648 8.54169 102.727 8.93501C102.916 9.84751 102.003 10.2959 101.578 10.6341C100.241 11.8298 98.9116 13.0176 97.5743 14.2133C97.9991 16.0462 98.4239 17.8791 98.8566 19.704C99.0454 20.475 99.0768 21.2616 98.4711 21.6234C97.771 22.0404 97.0079 21.4975 96.5124 21.1986C94.9627 20.2625 93.413 19.3264 91.8712 18.3903C90.3373 19.2792 88.8033 20.176 87.2694 21.0728C86.7974 21.356 86.1288 22.0246 85.3579 21.71C84.6027 21.4032 84.587 20.5615 84.7994 19.704C85.2242 17.8791 85.649 16.0462 86.0816 14.2133C84.7443 13.0176 83.407 11.8298 82.0776 10.6341C81.645 10.2959 80.7325 9.84751 80.9291 8.93501C81.0078 8.54956 81.3146 8.17196 81.6529 8.03823C83.8633 7.82584 86.0816 7.61345 88.2921 7.40106C89.1731 5.35581 90.0541 3.31056 90.9351 1.26531C91.1633 1.13945 91.3835 1.01356 91.6116 0.887695Z" fill="#F9C100"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.69 0.887695C117.917 0.895562 117.98 1.6901 118.349 2.54753C119.042 4.168 119.742 5.78059 120.434 7.40106C122.652 7.61345 124.863 7.82584 127.081 8.03823C127.419 8.17196 127.718 8.54169 127.805 8.93501C127.994 9.84751 127.081 10.2959 126.648 10.6341C125.319 11.8298 123.982 13.0176 122.652 14.2133C123.077 16.0462 123.502 17.8791 123.927 19.704C124.123 20.475 124.147 21.2616 123.541 21.6234C122.849 22.0404 122.078 21.4975 121.583 21.1986C120.041 20.2625 118.491 19.3264 116.941 18.3903C115.407 19.2792 113.873 20.176 112.347 21.0728C111.875 21.356 111.207 22.0246 110.428 21.71C109.681 21.4032 109.657 20.5615 109.877 19.704C110.302 17.8791 110.727 16.0462 111.152 14.2133C109.814 13.0176 108.485 11.8298 107.148 10.6341C106.723 10.2959 105.81 9.84751 105.999 8.93501C106.078 8.54956 106.385 8.17196 106.723 8.03823C108.941 7.82584 111.152 7.61345 113.37 7.40106C114.243 5.35581 115.124 3.31056 116.005 1.26531C116.233 1.13945 116.461 1.01356 116.69 0.887695Z" fill="#F9C100"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.2 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg width="12" height="19" viewBox="0 0 12 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.9319 8.77615L3.16777 0.996312C2.98684 0.815386 2.743 0.713135 2.49127 0.713135C2.23168 0.713135 1.9957 0.815386 1.81478 0.996312L1.24045 1.57054C0.870734 1.94026 0.870734 2.54599 1.24045 2.92358L7.76956 9.46052L1.23267 16.0053C1.05175 16.1784 0.957275 16.4222 0.957275 16.6818C0.957275 16.9335 1.05175 17.1774 1.23267 17.3583L1.8069 17.9247C1.98783 18.1056 2.22381 18.2079 2.4834 18.2079C2.73512 18.2079 2.97897 18.1056 3.15989 17.9247L10.9319 10.137C11.1128 9.95608 11.215 9.71224 11.215 9.46052C11.215 9.20093 11.1128 8.95707 10.9319 8.77615Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 677 B |
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// Namespace
|
||||
namespace Inisev\Subs;
|
||||
|
||||
// Disallow direct access
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
?>
|
||||
|
||||
<div class="ci-projects-list">
|
||||
<div class="ci-project-list-element ci-project-list-element-BackupMigration" id="BackupMigration-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/bmi/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/bmi/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>Backup Migration</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-MyPopups" id="MyPopups-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/mpu/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/mpu/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>MyPopUps</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-CopyDeletePosts" id="CopyDeletePosts-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/cdp/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/cdp/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>Copy & Delete</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-TasteWP" id="TasteWP-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/twp/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>TasteWP</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-SocialShare" id="SocialShare-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/usm/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>Social Share</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-redRed" id="redRed-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/not-colored-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/red/imgs/colored-logo-rr.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>Redirect Redirection</span>
|
||||
</div>
|
||||
<div class="ci-project-list-element ci-project-list-element-followIt" id="followIt-trigger">
|
||||
<div class="ci-project-list-element-logo">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/white-logo.svg'); ?>" class="ci-white-project-logo">
|
||||
<img src="<?php $this->_asset('/projects/fit/imgs/colored-logo.svg'); ?>" class="ci-colored-project-logo">
|
||||
</div>
|
||||
<span>follow.it</span>
|
||||
</div>
|
||||
</div>
|
||||