install.php
38 lines
| 1 | <?php |
| 2 | |
| 3 | // Namespace |
| 4 | namespace Inisev\Subs; |
| 5 | |
| 6 | // Disallow direct access |
| 7 | if (!defined('ABSPATH')) exit; |
| 8 | |
| 9 | ?> |
| 10 | |
| 11 | <img src="<?php $this->_asset('/projects/fit/imgs/background-bottom-left.svg'); ?>" class="ci-background-bottom-left"> |
| 12 | <img src="<?php $this->_asset('/projects/fit/imgs/background-top-left.svg'); ?>" class="ci-background-top-left"> |
| 13 | <div class="ci-left-part ci-install-state"> |
| 14 | <div class="ci-project-logo"> |
| 15 | <a href="https://follow.it" target="_blank"> |
| 16 | <img src="<?php $this->_asset('/projects/fit/imgs/big-colored-logo.png'); ?>"> |
| 17 | </a> |
| 18 | </div> |
| 19 | <div class="ci-install-column"> |
| 20 | <ul class="ci-checkmark-list ci-checkmark-list-type-1"> |
| 21 | <li>Alert your website visitors about new posts automatically</li> |
| 22 | <li>Make them come back & increase your traffic</li> |
| 23 | <li><b>Free</b> <span class="ci-light-font">(<a href="http://follow.it/features-and-pricing" target="_blank">basic plan</a>)</span></li> |
| 24 | </ul> |
| 25 | <div class="ci-install-button"> |
| 26 | <a href="https://follow.it/intro" target="_blank" class="ci-button-link ci-round-button">Check it out</a> |
| 27 | </div> |
| 28 | </div> |
| 29 | </div> |
| 30 | <div class="ci-right-part"> |
| 31 | <img src="<?php $this->_asset('/projects/fit/imgs/background-top-right.svg'); ?>" class="ci-background-top-right"> |
| 32 | <img src="<?php $this->_asset('/projects/fit/imgs/background-bottom-right.svg'); ?>" class="ci-background-bottom-right"> |
| 33 | <img src="<?php $this->_asset('/projects/fit/imgs/face1.png'); ?>" class="ci-face-image-1"> |
| 34 | <img src="<?php $this->_asset('/projects/fit/imgs/face2.png'); ?>" class="ci-face-image-2"> |
| 35 | <img src="<?php $this->_asset('/projects/fit/imgs/face3.png'); ?>" class="ci-face-image-3"> |
| 36 | <img src="<?php $this->_asset('/projects/fit/imgs/face4.png'); ?>" class="ci-face-image-4"> |
| 37 | </div> |
| 38 |