update
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{**
|
||||
* Creative Elements - live Theme & Page Builder
|
||||
*
|
||||
* @author WebshopWorks
|
||||
* @copyright 2019-2022 WebshopWorks.com
|
||||
* @license One domain support license
|
||||
*}
|
||||
{if $stylesheets}
|
||||
{foreach $stylesheets.external as $stylesheet}
|
||||
<link rel="stylesheet" href="{$stylesheet.uri}" media="{$stylesheet.media}">
|
||||
{/foreach}
|
||||
|
||||
{foreach $stylesheets.inline as $stylesheet}
|
||||
<style>
|
||||
{$stylesheet.content|cefilter}
|
||||
</style>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
{foreach $javascript.external as $js}
|
||||
<script src="{$js.uri}" {$js.attribute}></script>
|
||||
{/foreach}
|
||||
|
||||
{foreach $javascript.inline as $js}
|
||||
<script>
|
||||
{$js.content|cefilter}
|
||||
</script>
|
||||
{/foreach}
|
||||
|
||||
{if $js_custom_vars}
|
||||
<script>
|
||||
{foreach $js_custom_vars as $var_key => $var_val}
|
||||
var {$var_key} = {json_encode($var_val)|cefilter};
|
||||
{/foreach}
|
||||
</script>
|
||||
{/if}
|
||||
@@ -0,0 +1,14 @@
|
||||
{**
|
||||
* Creative Elements - live Theme & Page Builder
|
||||
*
|
||||
* @author WebshopWorks
|
||||
* @copyright 2019-2022 WebshopWorks.com
|
||||
* @license One domain support license
|
||||
*}
|
||||
{if isset($CE_FOOTER)}
|
||||
{$CE_FOOTER|cefilter}
|
||||
{elseif file_exists("{$smarty.const._PS_THEME_DIR_}templates/_partials/footer.tpl")}
|
||||
{include '[1]_partials/footer.tpl'}
|
||||
{elseif $smarty.const._PARENT_THEME_NAME_}
|
||||
{include 'parent:_partials/footer.tpl'}
|
||||
{/if}
|
||||
@@ -0,0 +1,14 @@
|
||||
{**
|
||||
* Creative Elements - live Theme & Page Builder
|
||||
*
|
||||
* @author WebshopWorks
|
||||
* @copyright 2019-2022 WebshopWorks.com
|
||||
* @license One domain support license
|
||||
*}
|
||||
{if isset($CE_HEADER)}
|
||||
{$CE_HEADER|cefilter}
|
||||
{elseif file_exists("{$smarty.const._PS_THEME_DIR_}templates/_partials/header.tpl")}
|
||||
{include '[1]_partials/header.tpl'}
|
||||
{elseif $smarty.const._PARENT_THEME_NAME_}
|
||||
{include 'parent:_partials/header.tpl'}
|
||||
{/if}
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
header('Expires: Thu, 28 Feb 2019 00:00:00 GMT');
|
||||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
header('Location: ../../../../../../../');
|
||||
die;
|
||||
@@ -0,0 +1,13 @@
|
||||
{**
|
||||
* Creative Elements - live Theme & Page Builder
|
||||
*
|
||||
* @author WebshopWorks
|
||||
* @copyright 2019-2022 WebshopWorks.com
|
||||
* @license One domain support license
|
||||
*}
|
||||
{if file_exists("{$smarty.const._PS_THEME_DIR_}templates/_partials/javascript.tpl")}
|
||||
{include '[1]_partials/javascript.tpl'}
|
||||
{elseif $smarty.const._PARENT_THEME_NAME_}
|
||||
{include 'parent:_partials/javascript.tpl'}
|
||||
{/if}
|
||||
<!--CE-JS-->
|
||||
Reference in New Issue
Block a user