diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-04 21:54:36 -0800 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-12-04 21:58:10 -0800 |
commit | 5bed0f10ed4628049ca14fb188804654574be1bf (patch) | |
tree | 22712adce094c3a2d6d975393308035524e3c8ff /app/views | |
parent | a807e3b71bcc052d4b0859dd42739b4ae7def098 (diff) |
Various fixes
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/layouts/_theme.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/_theme.html.haml b/app/views/layouts/_theme.html.haml index 39727953d..066d9de42 100644 --- a/app/views/layouts/_theme.html.haml +++ b/app/views/layouts/_theme.html.haml @@ -7,7 +7,7 @@ - if !theme[:flavour] || theme[:skin] == 'default' = stylesheet_pack_tag theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}", integrity: true, media: 'all' - else - = stylesheet_pack_tag "skins/#{theme[:name]}/#{theme[:skin]}/#{theme[:pack]}" + = stylesheet_pack_tag "skins/#{theme[:flavour]}/#{theme[:skin]}/#{theme[:pack]}" - if theme[:preload] - theme[:preload].each do |link| %link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/ |