partials
5 years ago
custom-logo.php
5 years ago
elements.php
5 years ago
general.php
5 years ago
go-premium.php
5 years ago
license.php
5 years ago
main-template.php
5 years ago
twitch.php
5 years ago
vimeo.php
5 years ago
wistia.php
5 years ago
youtube.php
5 years ago
main-template.php
23 lines
| 1 | <?php |
| 2 | /* |
| 3 | * Main settings page |
| 4 | * All undefined vars comes from 'render_settings_page' method |
| 5 | * */ |
| 6 | ?> |
| 7 | <div class="template__wrapper background__liteGrey p30 pb50"> |
| 8 | <div class="embedpress__container"> |
| 9 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/logo.php'; ?> |
| 10 | <div class="embedpress-body mb30"> |
| 11 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/sidebar.php'; ?> |
| 12 | <div class="embedpress-content"> |
| 13 | <?php |
| 14 | include_once EMBEDPRESS_SETTINGS_PATH . "templates/{$template}.php"; |
| 15 | if ( 'license' != $template) { |
| 16 | include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/toast-message.php'; |
| 17 | } |
| 18 | ?> |
| 19 | </div> |
| 20 | </div> |
| 21 | <?php include_once EMBEDPRESS_SETTINGS_PATH . 'templates/partials/footer.php'; ?> |
| 22 | </div> |
| 23 | </div> |