2017-11-21 01:13:37 -05:00
|
|
|
- if theme
|
|
|
|
- if theme[:pack] != 'common' && theme[:common]
|
|
|
|
= render partial: 'layouts/theme', object: theme[:common]
|
|
|
|
- if theme[:pack]
|
2022-01-16 16:03:43 -05:00
|
|
|
- pack_path = theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}"
|
|
|
|
= javascript_pack_tag pack_path, crossorigin: 'anonymous'
|
2017-11-30 22:29:47 -05:00
|
|
|
- if theme[:skin]
|
2017-12-04 02:26:40 -05:00
|
|
|
- if !theme[:flavour] || theme[:skin] == 'default'
|
2022-01-16 16:03:43 -05:00
|
|
|
= stylesheet_pack_tag pack_path, media: 'all', crossorigin: 'anonymous'
|
2017-11-30 22:29:47 -05:00
|
|
|
- else
|
2022-01-16 16:25:53 -05:00
|
|
|
= stylesheet_pack_tag "skins/#{theme[:flavour]}/#{theme[:skin]}/#{theme[:pack]}", media: 'all', crossorigin: 'anonymous'
|
2017-11-21 01:13:37 -05:00
|
|
|
- if theme[:preload]
|
|
|
|
- theme[:preload].each do |link|
|
|
|
|
%link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/
|