theme

Usage

The | theme filter returns an address relative to the active theme path of the website. The result is an absolute URL, including domain and protocol, to the asset specified in the filter parameter. Theme assets usually reside in the assets subdirectory of a theme directory.

<script type="text/javascript" src="{{ 'assets/js/menu.js' | theme }}"></script>
Twig

If the website address is https://wintercms.com and the active theme is called website, the above example would output the following:

<script type="text/javascript" src="https://https://wintercms.com/themes/website/assets/js/menu.js"></script>
HTML

The filter can also be used to interact with the Asset Compiler by passing an array of files which can be used for asset compilation or combination.

<link href="{{ [
    'assets/css/styles1.css',
    'assets/css/styles2.css'
] | theme }}" rel="stylesheet">
Twig
Copyright © 2024 Winter CMS