first commit
This commit is contained in:
139
admin-kalsport/themes/new-theme/template/layout.tpl
Normal file
139
admin-kalsport/themes/new-theme/template/layout.tpl
Normal file
@@ -0,0 +1,139 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{$iso}">
|
||||
<head>
|
||||
{$header}
|
||||
</head>
|
||||
|
||||
<body
|
||||
class="lang-{$iso_user}{if $lang_is_rtl} lang-rtl{/if} {$smarty.get.controller|escape|strtolower}{if $collapse_menu} page-sidebar-closed{/if}{if isset($is_multishop) && $is_multishop} multishop-enabled{/if}{if isset($lite_display) && $lite_display} light_display_layout{/if}"
|
||||
{if isset($js_router_metadata.base_url)}data-base-url="{$js_router_metadata.base_url}"{/if}
|
||||
{if isset($js_router_metadata.token)}data-token="{$js_router_metadata.token}"{/if}
|
||||
>
|
||||
|
||||
{if $display_header}
|
||||
<header id="header" class="d-print-none">
|
||||
|
||||
<nav id="header_infos" class="main-header">
|
||||
<button class="btn btn-primary-reverse onclick btn-lg unbind ajax-spinner"></button>
|
||||
|
||||
{* Logo *}
|
||||
<i class="material-icons js-mobile-menu">menu</i>
|
||||
<a id="header_logo" class="logo float-left" href="{$default_tab_link|escape:'html':'UTF-8'}"></a>
|
||||
<span id="shop_version">{$ps_version}</span>
|
||||
|
||||
<div class="component" id="quick-access-container">
|
||||
{include file="components/layout/quick_access.tpl"}
|
||||
</div>
|
||||
<div class="component" id="header-search-container">
|
||||
{include file="components/layout/search_form.tpl"}
|
||||
</div>
|
||||
|
||||
{if isset($debug_mode) && $debug_mode == true}
|
||||
<div class="component hide-mobile-sm" id="header-debug-mode-container">
|
||||
<a class="link shop-state"
|
||||
id="debug-mode"
|
||||
data-toggle="pstooltip"
|
||||
data-placement="bottom"
|
||||
data-html="true"
|
||||
title="<p class='text-left'><strong>{l s='Your shop is in debug mode.' d='Admin.Navigation.Notification'}</strong></p><p class='text-left'>{l s='All the PHP errors and messages are displayed. When you no longer need it, [1]turn off[/1] this mode.' html=true sprintf=['[1]' => '<strong>', '[/1]' => '</strong>'] d='Admin.Navigation.Notification'}</p>"
|
||||
href="{$link->getAdminLink('AdminPerformance')|escape:'html':'UTF-8'}"
|
||||
>
|
||||
<i class="material-icons">bug_report</i>
|
||||
<span>{l s='Debug mode' d='Admin.Navigation.Header'}</span>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{if isset($maintenance_mode) && $maintenance_mode == true}
|
||||
<div class="component hide-mobile-sm" id="header-maintenance-mode-container">
|
||||
<a class="link shop-state"
|
||||
id="maintenance-mode"
|
||||
data-toggle="pstooltip"
|
||||
data-placement="bottom"
|
||||
data-html="true"
|
||||
title="<p class='text-left'><strong>{l s='Your shop is in maintenance.' d='Admin.Navigation.Notification'}</strong></p><p class='text-left'>{l s='Your visitors and customers cannot access your shop while in maintenance mode.%s To manage the maintenance settings, go to Shop Parameters > Maintenance tab.' sprintf=['<br />'] d='Admin.Navigation.Notification'}</p>" href="{$link->getAdminLink('AdminMaintenance')|escape:'html':'UTF-8'}"
|
||||
>
|
||||
<i class="material-icons">build</i>
|
||||
<span>{l s='Maintenance mode' d='Admin.Navigation.Header'}</span>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{if !isset($hideLegacyStoreContextSelector) || !$hideLegacyStoreContextSelector}
|
||||
<div class="component" id="header-shop-list-container">
|
||||
{include file="components/layout/shop_list.tpl"}
|
||||
</div>
|
||||
{/if}
|
||||
{if $show_new_orders || $show_new_customers || $show_new_messages}
|
||||
<div class="component header-right-component" id="header-notifications-container">
|
||||
{include file="components/layout/notifications_center.tpl"}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="component" id="header-employee-container">
|
||||
{include file="components/layout/employee_dropdown.tpl"}
|
||||
</div>
|
||||
{if isset($displayBackOfficeTop)}{$displayBackOfficeTop}{/if}
|
||||
</nav>
|
||||
</header>
|
||||
{/if}
|
||||
|
||||
{if $display_header}
|
||||
{include file='components/layout/nav_bar.tpl'}
|
||||
{/if}
|
||||
|
||||
{if isset($page_header_toolbar)}{$page_header_toolbar}{/if}
|
||||
|
||||
<div id="main-div">
|
||||
{if $install_dir_exists}
|
||||
<div class="alert alert-warning">
|
||||
{l s='For security reasons, you must also delete the /install folder.' d='Admin.Login.Notification'}
|
||||
</div>
|
||||
{else}
|
||||
{if isset($modal_module_list)}{$modal_module_list}{/if}
|
||||
|
||||
<div class="{if $display_header}content-div{/if} {if !isset($page_header_toolbar)}-notoolbar{/if} {if $current_tab_level == 3}with-tabs{/if}">
|
||||
|
||||
{hook h='displayAdminAfterHeader'}
|
||||
|
||||
{if $display_header}
|
||||
{include file='components/layout/error_messages.tpl'}
|
||||
{include file='components/layout/information_messages.tpl'}
|
||||
{include file='components/layout/confirmation_messages.tpl'}
|
||||
{include file='components/layout/warning_messages.tpl'}
|
||||
{/if}
|
||||
|
||||
<div class="row ">
|
||||
<div class="col-sm-12">
|
||||
{$page}
|
||||
{hook h='displayAdminEndContent'}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if (!isset($lite_display) || (isset($lite_display) && !$lite_display))}
|
||||
{include file='components/layout/non-responsive.tpl'}
|
||||
<div class="mobile-layer"></div>
|
||||
|
||||
{if $display_footer}
|
||||
{include file='footer.tpl'}
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{if isset($php_errors)}
|
||||
{include file="error.tpl"}
|
||||
{/if}
|
||||
|
||||
{if (!isset($lite_display) || (isset($lite_display) && !$lite_display))}
|
||||
{if isset($modals)}
|
||||
<div class="bootstrap">
|
||||
{$modals}
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user