Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone have a workflow for developing Shopify themes with Compass and Sass? I am really close, I just need to figure out how to not make Sass barf on the CSS liquid tags.

Here's what I've got:

  • A sass/compass project in directory (ex:, "/newwebsite/)
  • A subdirectory containing my Shopify theme ("/newwebsite/newwebsite-theme/")
  • A Compass config.rb that points the css,_dir images_dir and javascripts_dir all to the them's assets folder ("/newwebsite/newwebsite-theme/assets/")
  • Compass watch on
  • shopify_theme gem also watch on, uploading theme files to shopify (https://github.com/Shopify/shopify_theme)
  • EDIT Sass interpolations (see anser below)
  • EDIT Compass callback to rename to .css.liquid

The problem: Compass barf's when you need to use Shopify's liquid templating tags, for example, a background image - example, background: url( "{{ "splash-1.jpg" | asset_url }}")

Does anyone know how to instruct Compass / Sass to spit out the liquid template tags as they are into the CSS? If I have that, then I have a solid workflow of editing Sass locally, and realizing the changes momentarily after on the shopify shop.

Thanks

EDIT: By using Hopper's answer below for the liquid tags in Sass, and renaming the Compass output .css file to .css.liquid, I now have an instantaneous workflow for designing a Shopify theme with Compass and Sass! Here is the code for the Compass callback that goes in the config.rb:

on_stylesheet_saved do |filename|
  s = filename + ".liquid"
  puts "copying to: " + s
  FileUtils.cp(filename, s)
  puts "removing: " + filename
end
share|improve this question
I was trying to do this at one point and got nowhere. It might be possible with a custom SASS extension, or if there is a directive that tells the sass compiler to ignore and output as is, but I didn't find anything that would work. – John Duff Jun 28 '12 at 8:13

2 Answers

up vote 6 down vote accepted

I'm not familiar with Shopify or liquid tags, but I do know that in SASS you can use interpolations to output plain CSS as-is. For example, the SASS here:

.test {
    background: url( #{'{{ "splash-1.jpg" | asset_url }}'} )
}

Would be compiled to:

.test {
    background: url({{ "splash-1.jpg" | asset_url }}); }

Does that get you close to what you're looking for?

share|improve this answer
1  
Yes! I also used the on_stylesheet_saved Compass callback to rename the CSS file to .liquid. I now have a instantaneous workflow Thank you hopper! – Ward Penney Jun 30 '12 at 15:37
I've been looking for a way to do this for so long +1 – chrixian Dec 3 '12 at 15:27

How do you keep Compass from barfing on liquid logic between properties? E.g. any time there's a liquid if statement I get errors, and using #{'...'} doesn't seem to help.

This is a test I can't get to work:

#container {
  width:884px;
  margin:0px auto;
  min-height:500px;
  position:relative;
  padding:0 40px;
  {% if settings.page_bg_transparent %}
    background:transparent;
  {% else %}
    background:{{ settings.page_bg_color }};
  {% endif %}
}

UPDATE weirdly, commenting liquid logic works:

#container {
  width:884px;
  margin:0px auto;
  min-height:500px;
  position:relative;
  padding:0 40px; 
  /* {% if settings.page_bg_transparent %} */
    background:transparent;
  /* {% else %} */
    background:#{'{{ settings.page_bg_color }}'}; 
  /* {% endif %} */
}
share|improve this answer
interesting.. good to know – chrixian Dec 3 '12 at 15:35
Thanks this is really helpful! – Paul Mason May 8 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.