about summary refs log tree commit diff
path: root/app/views/layouts/_theme.html.haml
blob: 71e661de653bfeefbf398a1d61157b8f5d56f7ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
- if theme
  - if theme[:pack] != 'common' && theme[:common]
    = render partial: 'layouts/theme', object: theme[:common]
  - if theme[:pack]
    - pack_path = theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}"
    = javascript_pack_tag pack_path, crossorigin: 'anonymous'
    - if theme[:skin]
      - if !theme[:flavour] || theme[:skin] == 'default'
        = stylesheet_pack_tag pack_path, media: 'all', crossorigin: 'anonymous'
      - else
        = stylesheet_pack_tag "skins/#{theme[:flavour]}/#{theme[:skin]}/#{theme[:pack]}", media: 'all', crossorigin: 'anonymous'
    - theme[:preload]&.each do |link|
      %link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/