PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
themes
/
wowy
<?php use Botble\Theme\Theme; return [ /* |-------------------------------------------------------------------------- | Inherit from another theme |-------------------------------------------------------------------------- | | Set up inherit from another if the file is not exists, | this is work with "layouts", "partials" and "views" | | [Notice] assets cannot inherit. | */ 'inherit' => null, //default /* |-------------------------------------------------------------------------- | Listener from events |-------------------------------------------------------------------------- | | You can hook a theme when event fired on activities | this is cool feature to set up a title, meta, default styles and scripts. | | [Notice] these event can be override by package config. | */ 'events' => [ // Listen on event before render a theme, // this event should call to assign some assets, // breadcrumb template. 'beforeRenderTheme' => function (Theme $theme) { $version = '1.3.0'; /*import vendors*/ $theme->asset()->usePath()->add('normalize-css', 'css/vendors/normalize.css'); $theme->asset()->usePath()->add('bootstrap-css', 'css/vendors/bootstrap.min.css'); $theme->asset()->usePath()->add('fontawesome-css', 'css/vendors/fontawesome-all.min.css'); $theme->asset()->usePath()->add('wowy-font-css', 'css/vendors/wowy-font.css'); /*import plugins*/ $theme->asset()->usePath()->add('animate-css', 'css/plugins/animate.css'); $theme->asset()->usePath()->add('select2-css', 'css/plugins/select2.min.css'); $theme->asset()->usePath()->add('slick-css', 'css/plugins/slick.css'); $theme->asset()->usePath()->add('style-css', 'css/style.css', [], [], $version); if (BaseHelper::siteLanguageDirection() == 'rtl') { $theme->asset()->usePath()->add('rtl', 'css/rtl.css', [], [], $version); } $theme->asset()->container('footer')->usePath()->add('modernizr', 'js/vendor/modernizr-3.6.0.min.js'); $theme->asset()->container('footer')->usePath()->add('jquery', 'js/vendor/jquery.min.js'); $theme->asset()->container('footer')->usePath()->add('jquery-migrate', 'js/vendor/jquery-migrate.min.js'); $theme->asset()->container('footer')->usePath()->add('bootstrap-js', 'js/vendor/bootstrap.bundle.min.js'); $theme->asset()->container('footer')->usePath()->add('slick-js', 'js/plugins/slick.js'); $theme->asset()->container('footer')->usePath()->add('jquery.syotimer-js', 'js/plugins/jquery.syotimer.min.js'); $theme->asset()->container('footer')->usePath()->add('wow-js', 'js/plugins/wow.js'); $theme->asset()->container('footer')->usePath()->add('select2-js', 'js/plugins/select2.min.js'); $theme->asset()->container('footer')->usePath()->add('waypoints-js', 'js/plugins/waypoints.js'); $theme->asset()->container('footer')->usePath()->add('jquery.countdown-js', 'js/plugins/jquery.countdown.min.js'); $theme->asset()->container('footer')->usePath()->add('scrollup-js', 'js/plugins/scrollup.js'); $theme->asset()->container('footer')->usePath()->add('jquery.vticker-js', 'js/plugins/jquery.vticker-min.js'); $theme->asset()->container('footer')->usePath()->add('main', 'js/main.js', ['jquery.theia.sticky-js', 'jquery.elevatezoom-js'], [], $version); $theme->asset()->container('footer')->usePath()->add('backend', 'js/backend.js', [], [], $version); $theme->asset()->container('footer')->usePath()->add('components-js', 'js/components.js', [], [], $version); $theme->asset()->container('footer')->add('change-product-swatches', 'vendor/core/plugins/ecommerce/js/change-product-swatches.js', ['jquery'], [], $version); if (function_exists('shortcode')) { $theme->composer(['page', 'post', 'ecommerce.product'], function (\Botble\Shortcode\View\View $view) { $view->withShortcodes(); }); } }, ], ];
[+]
functions
[-] config.php
[edit]
[+]
widgets
[+]
..
[+]
public
[+]
layouts
[+]
lang
[+]
routes
[+]
partials
[+]
assets
[-] webpack.mix.js
[edit]
[-] screenshot.png
[edit]
[+]
views
[-] theme.json
[edit]
[+]
src