mirror of
https://ghproxy.net/https://github.com/AlxMedia/curver.git
synced 2025-08-28 11:50:25 +08:00
74 lines
1.6 KiB
PHP
74 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Settings page template.
|
|
*
|
|
* @package Kirki
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || die( "Can't access directly" );
|
|
|
|
return function () {
|
|
?>
|
|
|
|
<div class="wrap heatbox-wrap kirki-settings-page" data-setup-udb-nonce="<?php echo esc_attr( wp_create_nonce( 'Kirki_Prepare_Install_Udb' ) ); ?>">
|
|
|
|
<div class="heatbox-header heatbox-has-tab-nav heatbox-margin-bottom">
|
|
|
|
<div class="heatbox-container heatbox-container-center">
|
|
|
|
<div class="logo-container">
|
|
|
|
<div>
|
|
<span class="title">
|
|
<?php _e( 'Kirki Customizer Framework', 'kirki' ); ?>
|
|
<span class="version"><?php echo esc_html( KIRKI_VERSION ); ?></span>
|
|
</span>
|
|
<p class="subtitle"><?php _e( 'The #1 Customizer Toolkit for WordPress Theme Developers.', 'kirki' ); ?></p>
|
|
</div>
|
|
|
|
<div>
|
|
<img src="<?php echo esc_url( KIRKI_PLUGIN_URL ); ?>/assets/images/kirki-logo-rounded.png">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<nav>
|
|
<ul class="heatbox-tab-nav">
|
|
<li class="heatbox-tab-nav-item kirki-settings-panel">
|
|
<a href="#settings"><?php _e( 'Settings', 'kirki' ); ?></a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="heatbox-container heatbox-container-center heatbox-column-container">
|
|
|
|
<div class="heatbox-main heatbox-panel-wrapper">
|
|
|
|
<!-- Faking H1 tag to place admin notices -->
|
|
<h1 style="display: none;"></h1>
|
|
|
|
<div class="heatbox-admin-panel kirki-settings-panel">
|
|
<?php
|
|
require __DIR__ . '/metaboxes/clear-font-cache.php';
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<div class="heatbox-sidebar">
|
|
<?php require __DIR__ . '/metaboxes/documentation.php'; ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
};
|