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,36 @@
{**
* Creative Elements - live Theme & Page Builder
*
* @author WebshopWorks
* @copyright 2019-2023 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 $id => $stylesheet}
<style id="{$id}">
{$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}