animations
7 months ago
images
3 months ago
javascript
2 months ago
modals
3 months ago
stylesheet
2 months ago
templates
1 year ago
admin.php
3 months ago
connect-oneclick.php
3 months ago
connect.php
7 months ago
dashboard-oneclick.php
3 months ago
dashboard.php
3 months ago
oneclick.php
3 months ago
preview-site.php
7 months ago
system-report.php
4 months ago
oneclick.php
21 lines
| 1 | <script> |
| 2 | let nitroNonce = '<?php echo wp_create_nonce( NITROPACK_NONCE ); ?>'; |
| 3 | </script> |
| 4 | <div id="nitropack-container"> |
| 5 | <nav class="nitro-navigation"> |
| 6 | <div class="nitro-navigation-inner"> |
| 7 | <img src="<?php echo plugin_dir_url( __FILE__ ) . 'images/nitropack_wp_logo.svg'; ?>" |
| 8 | alt="NitroPack" /> |
| 9 | </div> |
| 10 | </nav> |
| 11 | <main id="main"> |
| 12 | <div class="container"> |
| 13 | <h1 class="mb-4"><?php esc_html_e( 'NitroPack OneClick™', 'nitropack' ); ?></h1> |
| 14 | <?php |
| 15 | if ( ! isset( $_GET['subpage'] ) ) { |
| 16 | require_once NITROPACK_PLUGIN_DIR . "view/dashboard-oneclick.php"; |
| 17 | } ?> |
| 18 | </div> |
| 19 | </main> |
| 20 | <?php require_once NITROPACK_PLUGIN_DIR . 'view/templates/template-toast.php'; ?> |
| 21 | </div> |