This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-20 22:13:37 -08:00
|
|
|
- if theme
|
|
|
|
- if theme[:pack] != 'common' && theme[:common]
|
|
|
|
= render partial: 'layouts/theme', object: theme[:common]
|
|
|
|
- if theme[:pack]
|
|
|
|
= javascript_pack_tag theme[:name] ? "themes/#{theme[:name]}/#{theme[:pack]}" : "core/#{theme[:pack]}", integrity: true, crossorigin: 'anonymous'
|
2017-11-30 19:29:47 -08:00
|
|
|
- if theme[:skin]
|
|
|
|
- if !theme[:name] || theme[:skin] == 'default'
|
|
|
|
= stylesheet_pack_tag theme[:name] ? "themes/#{theme[:name]}/#{theme[:pack]}" : "core/#{theme[:pack]}", integrity: true, media: 'all'
|
|
|
|
- else
|
|
|
|
= stylesheet_pack_tag "skins/#{theme[:name]}/#{theme[:skin]}/#{theme[:pack]}"
|
2017-11-20 22:13:37 -08:00
|
|
|
- if theme[:preload]
|
|
|
|
- theme[:preload].each do |link|
|
|
|
|
%link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/
|