api-settings.php
1 year ago
elements.php
1 year ago
features.php
1 year ago
go-premium.php
1 year ago
integration.php
1 year ago
popup-pro.php
1 year ago
sidebar.php
1 year ago
welcome.php
1 year ago
sidebar.php
68 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly |
| 4 | } |
| 5 | ?> |
| 6 | |
| 7 | <div class="sticky_sidebar"> |
| 8 | |
| 9 | <ul class="tab-menu tab_left_content"> |
| 10 | |
| 11 | <li> |
| 12 | <a href="#dashboard" class="tab-menu-link" data-content="dashboard"> |
| 13 | <div class="tab_menu_contents"> |
| 14 | <div class="icon"> |
| 15 | <i class="icon-dashboard"></i> |
| 16 | </div> |
| 17 | <div class="content"> |
| 18 | <h3><?php esc_html_e('Dashboard', 'spider-elements'); ?></h3> |
| 19 | <p><?php esc_html_e('Find all information', 'spider-elements'); ?></p> |
| 20 | </div> |
| 21 | </div> |
| 22 | </a> |
| 23 | </li> |
| 24 | |
| 25 | <li> |
| 26 | <a href="#elements" class="tab-menu-link" data-content="elements"> |
| 27 | <div class="tab_menu_contents"> |
| 28 | <div class="icon"> |
| 29 | <i class="icon-element"></i> |
| 30 | </div> |
| 31 | <div class="content"> |
| 32 | <h3><?php esc_html_e('Elements', 'spider-elements'); ?></h3> |
| 33 | <p><?php esc_html_e('Control All the Widgets', 'spider-elements'); ?></p> |
| 34 | </div> |
| 35 | </div> |
| 36 | </a> |
| 37 | </li> |
| 38 | |
| 39 | <li> |
| 40 | <a href="#features" class="tab-menu-link" data-content="features"> |
| 41 | <div class="tab_menu_contents"> |
| 42 | <div class="icon"> |
| 43 | <i class="icon-feature_two"></i> |
| 44 | </div> |
| 45 | <div class="content"> |
| 46 | <h3><?php esc_html_e('Features', 'spider-elements'); ?></h3> |
| 47 | <p><?php esc_html_e('Control All Features', 'spider-elements'); ?></p> |
| 48 | </div> |
| 49 | </div> |
| 50 | </a> |
| 51 | </li> |
| 52 | |
| 53 | <li> |
| 54 | <a href="#integration" class="tab-menu-link" data-content="integration"> |
| 55 | <div class="tab_menu_contents"> |
| 56 | <div class="icon"> |
| 57 | <i class="icon-setting"></i> |
| 58 | </div> |
| 59 | <div class="content"> |
| 60 | <h3><?php esc_html_e('Power-up Website', 'spider-elements'); ?></h3> |
| 61 | <p><?php esc_html_e('Install Other Plugins', 'spider-elements'); ?></p> |
| 62 | </div> |
| 63 | </div> |
| 64 | </a> |
| 65 | </li> |
| 66 | |
| 67 | </ul> |
| 68 | </div> |