install.php
33 lines
| 1 | <?php |
| 2 | |
| 3 | // Namespace |
| 4 | namespace Inisev\Subs; |
| 5 | |
| 6 | // Disallow direct access |
| 7 | if (!defined('ABSPATH')) exit; |
| 8 | |
| 9 | ?> |
| 10 | |
| 11 | <div class="ci-left-part ci-install-state"> |
| 12 | <div class="ci-project-logo"> |
| 13 | <a href="https://backupbliss.com" target="_blank"> |
| 14 | <div class="ci-project-logo-element"> |
| 15 | <img src="<?php $this->_asset('/projects/bmi/imgs/big-colored-logo.png'); ?>"> |
| 16 | <span><b>Backup</b> &<br>Clone & Migration</span> |
| 17 | </div> |
| 18 | </a> |
| 19 | <img src="<?php $this->_asset('/static/imgs/rating.svg'); ?>" class="ci-rating" > |
| 20 | </div> |
| 21 | <div class="ci-install-column"> |
| 22 | <ul class="ci-checkmark-list ci-checkmark-list-type-1"> |
| 23 | <li>Create backups & migrate your site</li> |
| 24 | <li>Don't lose your work / switch to another host with ease</li> |
| 25 | <li><b>Free</b> <span class="ci-light-font">(optional upgrade to <a href="https://backupbliss.com" target="_blank">premium</a>)</span></li> |
| 26 | </ul> |
| 27 | <div class="ci-install-button"> |
| 28 | <button class="ci-inisev-install-plugin" data-slug="bmi">Install plugin now</button> |
| 29 | <span>(from <a href="https://wordpress.org/plugins/backup-backup/" target="_blank">WP directory</a>)</span> |
| 30 | </div> |
| 31 | </div> |
| 32 | </div> |
| 33 |