Download project

This commit is contained in:
Roman Pyrih
2024-11-20 09:09:44 +01:00
parent 547a138d6a
commit 5ff041757f
40737 changed files with 7766183 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
<?php
/**
* Creative Elements - live Theme & Page Builder
*
* @author WebshopWorks, Elementor
* @copyright 2019-2023 WebshopWorks.com & Elementor.com
* @license https://www.gnu.org/licenses/gpl-3.0.html
*/
namespace CE;
defined('_PS_VERSION_') or exit;
?>
<script type="text/template" id="tmpl-elementor-navigator">
<div id="elementor-navigator__header">
<i id="elementor-navigator__toggle-all" class="eicon-expand" data-elementor-action="expand"></i>
<div id="elementor-navigator__header__title"><?php _e('Navigator'); ?></div>
<i id="elementor-navigator__close" class="eicon-close"></i>
</div>
<div id="elementor-navigator__elements"></div>
<div id="elementor-navigator__footer">
<i class="eicon-ellipsis-h"></i>
</div>
</script>
<script type="text/template" id="tmpl-elementor-navigator__elements">
<# if ( obj.elType ) { #>
<div class="elementor-navigator__item">
<div class="elementor-navigator__element__list-toggle">
<i class="eicon-sort-down"></i>
</div>
<# if ( icon ) { #>
<div class="elementor-navigator__element__element-type">
<i class="{{{ icon }}}"></i>
</div>
<# } #>
<div class="elementor-navigator__element__title">
<span class="elementor-navigator__element__title__text">{{{ title }}}</span>
</div>
<div class="elementor-navigator__element__toggle">
<i class="eicon-preview-medium"></i>
</div>
<div class="elementor-navigator__element__indicators"></div>
</div>
<# } #>
<div class="elementor-navigator__elements"></div>
</script>
<script type="text/template" id="tmpl-elementor-navigator__elements--empty">
<div class="elementor-empty-view__title"><?php _e('Empty'); ?></div>
</script>
<script type="text/template" id="tmpl-elementor-navigator__root--empty">
<img class="elementor-nerd-box-icon" src="<?php echo _CE_ASSETS_URL_ . 'img/information.svg'; ?>">
<div class="elementor-nerd-box-title"><?php _e('Easy Navigation is Here!'); ?></div>
<div class="elementor-nerd-box-message">
<?php _e('Once you fill your page with content, this window will give you an overview display of all the page elements. This way, you can easily move around any section, column, or widget.'); ?>
</div>
</script>