]> cat aescling's git repositories - mastodon.git/commitdiff
Refactor theming HAML template a bit
authorClaire <claire.github-309c@sitedethib.com>
Sun, 16 Jan 2022 21:03:43 +0000 (22:03 +0100)
committerClaire <claire.github-309c@sitedethib.com>
Sun, 16 Jan 2022 21:26:18 +0000 (22:26 +0100)
app/views/layouts/_theme.html.haml

index 92de64b0d02155c82f3593ad36c31003ab1c8cbd..fe4e59280ea49f144c9c8dbfc90ce965b4574558 100644 (file)
@@ -2,10 +2,11 @@
   - if theme[:pack] != 'common' && theme[:common]
     = render partial: 'layouts/theme', object: theme[:common]
   - if theme[:pack]
-    = javascript_pack_tag theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}", crossorigin: 'anonymous'
+    - 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 theme[:flavour] ? "flavours/#{theme[:flavour]}/#{theme[:pack]}" : "core/#{theme[:pack]}", media: 'all', crossorigin: 'anonymous'
+        = stylesheet_pack_tag pack_path, media: 'all', crossorigin: 'anonymous'
       - else
         = stylesheet_pack_tag "skins/#{theme[:flavour]}/#{theme[:skin]}/#{theme[:pack]}", crossorigin: 'anonymous'
     - if theme[:preload]