2017-11-21 07:13:37 +01:00
|
|
|
- if theme
|
|
|
|
- if theme[:pack] != 'common' && theme[:common]
|
|
|
|
= render partial: 'layouts/theme', object: theme[:common]
|
|
|
|
- if theme[:pack]
|
2017-12-04 08:26:40 +01:00
|
|
|
= javascript_pack_tag theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}", integrity: true, crossorigin: 'anonymous'
|
2017-12-01 04:29:47 +01:00
|
|
|
- if theme[:skin]
|
2017-12-04 08:26:40 +01:00
|
|
|
- if !theme[:flavour] || theme[:skin] == 'default'
|
|
|
|
= stylesheet_pack_tag theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}", integrity: true, media: 'all'
|
2017-12-01 04:29:47 +01:00
|
|
|
- else
|
2017-12-05 06:54:36 +01:00
|
|
|
= stylesheet_pack_tag "skins/#{theme[:flavour]}/#{theme[:skin]}/#{theme[:pack]}"
|
2017-11-21 07:13:37 +01:00
|
|
|
- if theme[:preload]
|
|
|
|
- theme[:preload].each do |link|
|
|
|
|
%link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/
|